-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: 👷 add workflow to auto-add PRs and Issues to board
- Loading branch information
1 parent
93b8ecf
commit ed8841a
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Add to project board | ||
|
||
on: | ||
issues: | ||
types: | ||
- opened | ||
- reopened | ||
- transferred | ||
pull_request: | ||
types: | ||
- reopened | ||
- opened | ||
|
||
permissions: | ||
pull-requests: write | ||
|
||
jobs: | ||
add-to-project: | ||
name: Add to project | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Add issue or PR to upcoming course board | ||
uses: actions/[email protected] | ||
with: | ||
project-url: https://github.com/orgs/${{ github.repository_owner }}/projects/12 | ||
github-token: ${{ secrets.ADD_TO_BOARD }} |