Skip to content

Commit

Permalink
Create issues-to-project.yml
Browse files Browse the repository at this point in the history
Workflow to add issues to the "DCC Engineering" project when they are created, edited, or reopened.
  • Loading branch information
fields37 committed Jun 24, 2023
1 parent 79a35ea commit a926888
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/issues-to-project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: move new, edited, reopened issues to DCC Engineering project

on:
issues:
types: [ opened, edited, reopened ]
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/digitalcredentials/projects/14
github-token: ${{ secrets.PROJECTS_ACCESS_TOKEN }}

0 comments on commit a926888

Please sign in to comment.