diff options
author | 2022-01-11 03:44:02 +0000 | |
---|---|---|
committer | 2022-01-11 03:44:02 +0000 | |
commit | db3c496c64325c7ae23ad8f6a5a4cf70485990f7 (patch) | |
tree | 0124e08f529ca9b2b3111ca258069ad4d0f6c8bb | |
parent | Add dnspython to requirements.txt (diff) |
Automatically add new issues to the project board (#12)
-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 }} |