Add workflow for adding PRs and Issues to the project board (#566)

Automatically adds all opened issues and pull requests to the project board.
This commit is contained in:
Jack 2023-10-14 22:11:48 +01:00 committed by GitHub
parent c447dcd04e
commit 711676ec8a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 20 additions and 0 deletions

20
.github/workflows/add-to-project.yml vendored Normal file
View File

@ -0,0 +1,20 @@
name: add-to-project
on:
issues:
types:
- opened
pull_request:
types:
- opened
jobs:
add-to-project:
name: Add to project
runs-on: ubuntu-latest
steps:
- uses: actions/add-to-project@v0.5.0
with:
project-url: "https://github.com/orgs/R2Northstar/projects/3"
github-token: "${{ secrets.PROJECT_BOARD_TOKEN }}"