diff --git a/.github/workflows/add-to-cc-board.yml b/.github/workflows/add-to-cc-board.yml new file mode 100644 index 0000000000..1007d128cb --- /dev/null +++ b/.github/workflows/add-to-cc-board.yml @@ -0,0 +1,15 @@ +name: Trigger to add Issue or PR to a Core Contributor project board +on: + issues: + types: [labeled] + pull_request: + types: [labeled] + +jobs: + add-to-cc-board: + if: github.event.label.name == 'Core Contributor assignee' + uses: openedx/.github/.github/workflows/add-to-cc-board.yml@main + with: + board_name: cc-frontend-apps + secrets: + projects_access_token: ${{ secrets.PROJECTS_TOKEN }}