Update workflow #1
This file contains hidden or 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
| # Specify commands for issues and pull requests | |
| # --------------------------------------------- | |
| hi: | |
| # Post a comment, `{{ author }}` is an author placeholder | |
| comment: hi @{{ author }} | |
| wow: | |
| # Post a comment | |
| # `{{ args.* }}` is command args placeholder | |
| # `{{ input }}` is command input placeholder | |
| comment: wow {{ args.0 }}, and the command args is {{ input }} | |
| # Reactions to be added to comment | |
| reactions: ['+1'] | |
| heated: | |
| # Lock the thread | |
| lock: true | |
| # Set a lock reason, such as `off-topic`, `too heated`, `resolved` or `spam` | |
| lockReason: too heated | |
| # Reactions to be added to comment | |
| reactions: ['eyes', 'heart'] | |
| # Post a comment | |
| comment: The thread has been temporarily locked. | |
| unheated: | |
| # Unlock the thread | |
| unlock: true | |
| label: | |
| label: | |
| # Add custom label | |
| - static-label | |
| # Space separated labels | |
| - 'label-1 label-2' | |
| # Add labels from args | |
| - '{{ args.0 }}' | |
| - '{{ args.1 }}' | |
| - '{{ args.2 }}' | |
| unlabel: | |
| label: | |
| # Remove custom label | |
| - -static-label | |
| # Remove labels from args | |
| - '-{{ args.0 }}' | |
| - '-{{ args.1 }}' | |
| - '-{{ args.2 }}' | |
| relabel: | |
| label: | |
| # Remove all labels | |
| - -* | |
| # add label from args | |
| - '{{ input }}' | |
| handover: | |
| # handover issues/PRs to the given users | |
| assign: | |
| - '-*' # first remove all the old assignees | |
| - '{{ input }}' | |
| assign: | |
| # assign issues/PRs to Jhon and the given users | |
| assign: | |
| - Jhon | |
| - '{{ input }}' | |
| # Optionally, specify commands just for issues | |
| # -------------------------------------------- | |
| issues: | |
| pin: | |
| # Pin the issue | |
| pin: true | |
| unpin: | |
| # UnPin the issue | |
| unpin: true | |
| feature: | |
| # Close the issue | |
| close: true | |
| # Post a comment, `{{ author }}` is an author placeholder | |
| comment: > | |
| :wave: @{{ author }}, please use our idea board to request new features. | |
| needs-more-info: | |
| # Close the issue | |
| close: true | |
| # Post a comment, `{{ author }}` is author placeholder | |
| comment: > | |
| @{{ author }} | |
| In order to communicate effectively, we have a certain format requirement for the issue, your issue is automatically closed because there is no recurring step or reproducible warehouse, and will be REOPEN after the offer. | |
| # Optionally, specify commands just for pull requests | |
| # --------------------------------------------------- | |
| pulls: | |
| hello: | |
| # Post a comment, `{{ input }}` is command input placeholder | |
| comment: hello {{ input }} |