diff options
author | Jack <66967891+ASpoonPlaysGames@users.noreply.github.com> | 2023-10-14 21:41:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-14 22:41:01 +0200 |
commit | a7d40aac072c6725548c2ba6d6a9ab649191594f (patch) | |
tree | 8ce92a916cdea481489d78f471fd257eebaddb80 /.github | |
parent | 2bb9216939a8bfd9fcd300893cb0626890a18a44 (diff) | |
download | NorthstarMods-a7d40aac072c6725548c2ba6d6a9ab649191594f.tar.gz NorthstarMods-a7d40aac072c6725548c2ba6d6a9ab649191594f.zip |
Add workflow for adding PRs and Issues to the project board (#696)
Automatically adds all opened issues and pull requests to the project board.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/add-to-project.yml | 19 |
1 files changed, 19 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..3a1d1c9a --- /dev/null +++ b/.github/workflows/add-to-project.yml @@ -0,0 +1,19 @@ +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.ADD_TO_PROJECT_PAT }}" |