From ff6571c6dcb3073c5d64fe505bab6b8aaf030142 Mon Sep 17 00:00:00 2001 From: Sophia Mersmann Date: Thu, 9 Jan 2025 17:28:14 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9D=20automatically=20add=20'staging-v?= =?UTF-8?q?iz'=20label=20to=20my=20PRs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/project-automations.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/project-automations.yml b/.github/workflows/project-automations.yml index 5ac8d2f20ac..146d1e60d0e 100644 --- a/.github/workflows/project-automations.yml +++ b/.github/workflows/project-automations.yml @@ -38,3 +38,12 @@ jobs: with: add-labels: "needs triage" repo-token: ${{ secrets.GITHUB_TOKEN }} + staging_viz: + name: Add "staging-viz" label to Sophia's PRs + runs-on: ubuntu-latest + if: github.event_name == 'pull_request' && github.event.action == 'opened' && github.actor == 'sophiamersmann' + steps: + - uses: andymckay/labeler@e6c4322d0397f3240f0e7e30a33b5c5df2d39e90 + with: + add-labels: "staging-viz" + repo-token: ${{ secrets.GITHUB_TOKEN }}