Skip to content

Commit

Permalink
Adding github action to add issues to project
Browse files Browse the repository at this point in the history
  • Loading branch information
arlake228 committed May 9, 2023
1 parent f0066ed commit 073f15c
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/project_auto_add_issue.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Adds all new issues to project board

on:
issues:
types:
- opened

jobs:
add-to-project:
name: Add issue to perfSONAR project
runs-on: ubuntu-latest
steps:
# NOTE: "uses" cannot be a variable so name and version hard-coded here
- uses: actions/[email protected]
with:
project-url: ${{ vars.PROJECT_PS_URL }}
github-token: ${{ secrets.PAT_PROJECT_PS_AUTO_ADD }}

0 comments on commit 073f15c

Please sign in to comment.