Skip to content

Commit

Permalink
🐝 automatically add 'staging-viz' label to my PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
sophiamersmann committed Jan 9, 2025
1 parent 04d8c52 commit 9cd3777
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/project-automations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ on:
- reopened
- review_requested
- closed
workflow_dispatch: true

jobs:
prio:
Expand All @@ -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 }}

0 comments on commit 9cd3777

Please sign in to comment.