Skip to content

Commit

Permalink
Merge pull request #993 from NREL/add-github-project-to-pr-issues
Browse files Browse the repository at this point in the history
Add a workflow that adds PRs and Issues to the "ResStock Development" project
  • Loading branch information
afontani committed Oct 10, 2022
2 parents 0a1b17c + 8200b26 commit bf4d004
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/add_to_project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Add pull request or issue to project
on:
pull_request:
types:
- opened
- reopened
issues:
types:
- opened
- reopened
- transferred

jobs:
add-to-project:
name: Add pull request or issue to project
runs-on: ubuntu-latest
steps:
- uses: actions/add-to-project@v0.3.0
with:
project-url: https://github.com/orgs/NREL/projects/38
github-token: ${{ secrets.GHB_TOKEN }}

0 comments on commit bf4d004

Please sign in to comment.