Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐝 automatically add 'staging-viz' label to my PRs #4428

Merged
merged 1 commit into from
Jan 10, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/project-automations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Loading