diff --git a/.github/workflows/project-automations.yml b/.github/workflows/project-automations.yml index 5ac8d2f20ac..fef962d1d57 100644 --- a/.github/workflows/project-automations.yml +++ b/.github/workflows/project-automations.yml @@ -12,6 +12,7 @@ on: - reopened - review_requested - closed + workflow_dispatch: true jobs: prio: @@ -38,3 +39,12 @@ jobs: with: add-labels: "needs triage" repo-token: ${{ secrets.GITHUB_TOKEN }} + staging_viz: + name: Add "staging-viz" label for 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 }}