Skip to content

Commit ab645ad

Browse files
authored
feat: add-to-cc-board Github action created. (#2302)
- This is a label trigger to add an Issue or PR to the front-end [Core Contributor project board](https://github.com/orgs/openedx/projects/80). - This action uses the `Core Contributor assignee` label as a trigger. - This action reuses openedx/.github#169 - When you add the label to an issue or PR, it is automatically added to the board https://github.com/orgs/openedx/projects/80
1 parent 720b591 commit ab645ad

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Trigger to add Issue or PR to a Core Contributor project board
2+
on:
3+
issues:
4+
types: [labeled]
5+
pull_request:
6+
types: [labeled]
7+
8+
jobs:
9+
add-to-cc-board:
10+
if: github.event.label.name == 'Core Contributor assignee'
11+
uses: openedx/.github/.github/workflows/add-to-cc-board.yml@main
12+
with:
13+
board_name: cc-frontend-apps
14+
secrets:
15+
projects_access_token: ${{ secrets.PROJECTS_TOKEN }}

0 commit comments

Comments
 (0)