Skip to content

Commit

Permalink
ci: automatically add issues to main project board (#58)
Browse files Browse the repository at this point in the history
* Automatically add issues to main project board

* ci: automatically add issues to main project board

Co-authored-by: Charles Coggins <maxrake@users.noreply.github.com>
  • Loading branch information
louislang and maxrake committed Jul 5, 2022
1 parent 70efbba commit 1d31ca1
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/issues.yml
@@ -0,0 +1,16 @@
name: Add issues to main project board

on:
issues:
types:
- opened

jobs:
add-to-project:
name: Add issue to project
runs-on: ubuntu-latest
steps:
- uses: actions/add-to-project@main
with:
project-url: https://github.com/orgs/phylum-dev/projects/24
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}

0 comments on commit 1d31ca1

Please sign in to comment.