Skip to content

Commit

Permalink
Add workflow for adding Issues to the project board (#242)
Browse files Browse the repository at this point in the history
Automatically adds all opened issues to the project board.
  • Loading branch information
ASpoonPlaysGames authored Oct 16, 2023
1 parent 792f778 commit e57ca1d
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/add-to-project.yml
Original file line number Diff line number Diff line change
@@ -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/[email protected]
with:
project-url: "https://github.com/orgs/R2Northstar/projects/3"
github-token: "${{ secrets.PROJECT_BOARD_TOKEN }}"

0 comments on commit e57ca1d

Please sign in to comment.