From adc5fb7fdf310e5b01d4003b8db338be2942331e Mon Sep 17 00:00:00 2001 From: Francesco Novy Date: Fri, 6 Sep 2024 12:05:27 +0200 Subject: [PATCH] ci: Add some additional GH project automation --- .github/workflows/project-automation.yml | 61 ++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 .github/workflows/project-automation.yml diff --git a/.github/workflows/project-automation.yml b/.github/workflows/project-automation.yml new file mode 100644 index 000000000000..4134eb879dfe --- /dev/null +++ b/.github/workflows/project-automation.yml @@ -0,0 +1,61 @@ +name: "Automation: Update GH Project" +on: + pull_request: + types: + - closed + - opened + - reopened + - ready_for_review + +jobs: + # When a PR is a draft, it should go into "In Progress" + mark_as_in_progress: + if: | + (github.event.action == 'opened' || github.event.action == 'reopened') + && github.event.pull_request.draft == true + runs-on: ubuntu-latest + steps: + - name: Update status to in_progress + id: update_status + uses: peter-evans/create-or-update-project-card@v3 + with: + token: ${{ secrets.GITHUB_TOKEN }} + project-location: getsentry + project-number: 31 + column-name: "🏗 In Progress" + issue-number: ${{ github.event.number }} + + # When a PR is not a draft, it should go into "In Review" + mark_as_in_review: + if: | + (github.event.action == 'opened' || github.event.action == 'reopened' || github.event.action == 'ready_for_review') + && github.event.pull_request.draft == false + runs-on: ubuntu-latest + steps: + - name: Update status to in_review + id: update_status + uses: peter-evans/create-or-update-project-card@v3 + with: + token: ${{ secrets.GITHUB_TOKEN }} + project-location: getsentry + project-number: 31 + column-name: "👀 In Review" + issue-number: ${{ github.event.number }} + + + # By default, closed PRs go into "Ready for Release" + # But if they are closed without merging, they should go into "Done" + mark_as_done: + if: | + github.event.action == 'closed' && github.event.pull_request.merged == false + runs-on: ubuntu-latest + steps: + - name: Update status to done + id: update_status + uses: peter-evans/create-or-update-project-card@v3 + with: + token: ${{ secrets.GITHUB_TOKEN }} + project-location: getsentry + project-number: 31 + column-name: "✅ Done" + issue-number: ${{ github.event.number }}