File tree Expand file tree Collapse file tree 4 files changed +61
-0
lines changed
Expand file tree Collapse file tree 4 files changed +61
-0
lines changed Original file line number Diff line number Diff line change 1+ # Run the workflow that adds new tickets that are either:
2+ # - labelled "DEPR"
3+ # - title starts with "[DEPR]"
4+ # - body starts with "Proposal Date" (this is the first template field)
5+ # to the org-wide DEPR project board
6+
7+ name : Add newly created DEPR issues to the DEPR project board
8+
9+ on :
10+ issues :
11+ types : [opened]
12+
13+ jobs :
14+ routeissue :
15+ uses : openedx/.github/.github/workflows/add-depr-ticket-to-depr-board.yml@master
16+ secrets :
17+ GITHUB_APP_ID : ${{ secrets.GRAPHQL_AUTH_APP_ID }}
18+ GITHUB_APP_PRIVATE_KEY : ${{ secrets.GRAPHQL_AUTH_APP_PEM }}
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+ # Run commitlint on the commit messages in a pull request.
2+
3+ name : Lint Commit Messages
4+
5+ on :
6+ - pull_request
7+
8+ jobs :
9+ commitlint :
10+ uses : openedx/.github/.github/workflows/commitlint.yml@master
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