diff options
author | Jack <66967891+ASpoonPlaysGames@users.noreply.github.com> | 2023-10-16 15:59:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-16 16:59:06 +0200 |
commit | e57ca1d5ae16e6d1e4ed21aa8cb297ade72ada25 (patch) | |
tree | 454711b68e97a3abec9e982d60af02151cf34ad4 | |
parent | 792f778fe63941086df62b50fdf08908bd49f350 (diff) | |
download | NorthstarWiki-e57ca1d5ae16e6d1e4ed21aa8cb297ade72ada25.tar.gz NorthstarWiki-e57ca1d5ae16e6d1e4ed21aa8cb297ade72ada25.zip |
Add workflow for adding Issues to the project board (#242)
Automatically adds all opened issues to the project board.
-rw-r--r-- | .github/workflows/add-to-project.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/add-to-project.yml b/.github/workflows/add-to-project.yml new file mode 100644 index 0000000..da04da2 --- /dev/null +++ b/.github/workflows/add-to-project.yml @@ -0,0 +1,16 @@ +name: add-to-project + +on: + issues: + 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 }}" |