File tree Expand file tree Collapse file tree 3 files changed +33
-1
lines changed Expand file tree Collapse file tree 3 files changed +33
-1
lines changed Original file line number Diff line number Diff line change 16
16
secrets :
17
17
GITHUB_APP_ID : ${{ secrets.GRAPHQL_AUTH_APP_ID }}
18
18
GITHUB_APP_PRIVATE_KEY : ${{ secrets.GRAPHQL_AUTH_APP_PEM }}
19
- SLACK_BOT_TOKEN : ${{ secrets.SLACK_ISSUE_BOT_TOKEN }}
19
+ SLACK_BOT_TOKEN : ${{ secrets.SLACK_ISSUE_BOT_TOKEN }}
Original file line number Diff line number Diff line change
1
+ # This workflow runs when a comment is made on the ticket
2
+ # If the comment starts with "label: " it tries to apply
3
+ # the label indicated in rest of comment.
4
+ # If the comment starts with "remove label: ", it tries
5
+ # to remove the indicated label.
6
+ # Note: Labels are allowed to have spaces and this script does
7
+ # not parse spaces (as often a space is legitimate), so the command
8
+ # "label: really long lots of words label" will apply the
9
+ # label "really long lots of words label"
10
+
11
+ name : Allows for the adding and removing of labels via comment
12
+
13
+ on :
14
+ issue_comment :
15
+ types : [created]
16
+
17
+ jobs :
18
+ add_remove_labels :
19
+ uses : openedx/.github/.github/workflows/add-remove-label-on-comment.yml@master
20
+
Original file line number Diff line number Diff line change
1
+ # This workflow runs when a comment is made on the ticket
2
+ # If the comment starts with "assign me" it assigns the author to the
3
+ # ticket (case insensitive)
4
+
5
+ name : Assign comment author to ticket if they say "assign me"
6
+ on :
7
+ issue_comment :
8
+ types : [created]
9
+
10
+ jobs :
11
+ self_assign_by_comment :
12
+ uses : openedx/.github/.github/workflows/self-assign-issue.yml@master
You can’t perform that action at this time.
0 commit comments