mirror of
https://github.com/R2Northstar/Northstar
synced 2026-08-23 20:23:04 -04:00
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:
parent
c447dcd04e
commit
711676ec8a
1 changed files with 20 additions and 0 deletions
20
.github/workflows/add-to-project.yml
vendored
Normal file
20
.github/workflows/add-to-project.yml
vendored
Normal 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 }}"
|
||||||
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue