forked from alex-page/github-project-automation-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add 'column-{allow/deny}-list' optional inputs
This adds the `column-allow-list` and `column-deny-list` optional inputs. If neither is set the behavior of the action is identical to before. `column-allow-list` may be set to a string or list of strings (separated by comma or newline character) which specifes columns that the action may move cards from only. That is, if `column-deny-list` is set to `todo,wip` then only cards in `todo` and `wip` can be moved by the job. If unset all cards in all columns may be moved (assuming `column-deny-list` is also unset). `column-deny-list` may also be set to a string or list of strings (again, separated by a comma or newline character) which specifies columns that the action may never move cards. That is, if `column-deny-list` is set to `todo,wip` then cards in `todo` and `wip` will not be moved by the job. If unset all the cards in all the columns may be moved (assuming `column-allow-list` is also unset). from. This addresses: alex-page#41. Tests have been added to verify previous behavior is preserved and these new inputs function as intended.
- Loading branch information
1 parent
7ffb872
commit f1c2861
Showing
4 changed files
with
104 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters