diff options
-rw-r--r-- | .github/workflows/projects_automation.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/projects_automation.yml b/.github/workflows/projects_automation.yml new file mode 100644 index 0000000..11ddf19 --- /dev/null +++ b/.github/workflows/projects_automation.yml @@ -0,0 +1,16 @@ +name: Add issues and PRs to project + +on: + issues: + types: [opened] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: alex-page/[email protected] + with: + project: Infrastructure + column: Todo + repo-token: ${{ secrets.GITHUB_TOKEN }} |