From e3ddd075fa9503fe8f981089548b066473767c38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodrigo=20Ara=C3=BAjo?= Date: Thu, 13 Jul 2023 14:31:04 -0700 Subject: [PATCH] ci: auto setup of PRs and issues (#724) ###### Description of changes Auto-assign the GH project to issues and pull requests. Plus, move them to the appropriate columns. --- .github/workflows/opened-issues-triage.yml | 15 +++++++++++++++ .github/workflows/pull-requests.yml | 15 +++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 .github/workflows/opened-issues-triage.yml create mode 100644 .github/workflows/pull-requests.yml diff --git a/.github/workflows/opened-issues-triage.yml b/.github/workflows/opened-issues-triage.yml new file mode 100644 index 000000000..056511d81 --- /dev/null +++ b/.github/workflows/opened-issues-triage.yml @@ -0,0 +1,15 @@ +name: Move new issues into Triage + +on: + issues: + types: [opened] + +jobs: + automate-project-columns: + runs-on: ubuntu-latest + steps: + - uses: alex-page/github-project-automation-plus@v0.8.3 + with: + project: SDK + column: 🔍 Triage + repo-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/pull-requests.yml b/.github/workflows/pull-requests.yml new file mode 100644 index 000000000..8ba002a81 --- /dev/null +++ b/.github/workflows/pull-requests.yml @@ -0,0 +1,15 @@ +name: Move assigned pull requests into To do + +on: + pull_request: + types: [opened] + +jobs: + automate-project-columns: + runs-on: ubuntu-latest + steps: + - uses: alex-page/github-project-automation-plus@v0.8.1 + with: + project: SDK + column: 👀 In review + repo-token: ${{ secrets.GITHUB_TOKEN }}