Skip to content

Commit

Permalink
Merge pull request #62 from rcpch/adds-workflow-file-auto-add-to-project
Browse files Browse the repository at this point in the history
adds auto-add-to-issues workflow
  • Loading branch information
pacharanero authored Feb 7, 2024
2 parents 0c306b0 + 5e6aeb5 commit eac54e2
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/auto-add-issues-to-project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Adds new Issues automatically to the dGC Project

on:
issues:
types:
- opened
pull_request:
types:
- opened

jobs:
add-to-project:
name: Add issue or PR to project automatically
runs-on: ubuntu-latest
steps:
- uses: actions/add-to-project@v0.4.0
with:
project-url: https://github.com/orgs/rcpch/projects/5 #dGC Project
github-token: ${{ secrets.AUTO_ADD_TO_PROJECT_TOKEN }}

0 comments on commit eac54e2

Please sign in to comment.