Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add "Done" status #11

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/task_sources/jira/jira_to_jxa_app.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

# Change the filter id here. TODO Use by name and save it on the config.
JIRA_TASK_RE=/(.*-[0-9]*):(.*)/
JIRA_STATI_FOR_COMPLETED=["Resolved", "Rejected", "Closed"] # The status a completed JIRA project should have on your machine.
JIRA_STATI_FOR_COMPLETED=["Resolved", "Rejected", "Closed", "Done"] # The status a completed JIRA project should have on your machine.

# Ask for 100 items at a time (JIRA default is 50). It's not that much RAM.
JIRA_MAX_RESULTS = 100
Expand Down Expand Up @@ -179,4 +179,4 @@ def main
file.unlink
end

end
end