diff options
author | Jack <66967891+ASpoonPlaysGames@users.noreply.github.com> | 2023-10-14 21:55:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-14 22:55:56 +0200 |
commit | 2dd19ab51f7b95f7a5cf1ac8b9e6635a918f6b3c (patch) | |
tree | 3004f68e55f588c021e1c69b93344da5b33e0935 /.github/workflows | |
parent | 99c5c86e188e090c93a9778da3402d62409ece8b (diff) | |
download | NorthstarLauncher-2dd19ab51f7b95f7a5cf1ac8b9e6635a918f6b3c.tar.gz NorthstarLauncher-2dd19ab51f7b95f7a5cf1ac8b9e6635a918f6b3c.zip |
Add workflow for adding PRs and Issues to the project board (#572)
Automatically adds all opened issues and pull requests to the project board.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/add-to-project.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.github/workflows/add-to-project.yml b/.github/workflows/add-to-project.yml new file mode 100644 index 00000000..f0414d7c --- /dev/null +++ b/.github/workflows/add-to-project.yml @@ -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 }}" + |