Bump mozilla-taskgraph from 3.0.0 to 3.0.1 #148
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Add "Landing Label" | |
# When a pull request get's auto merge enabled | |
# add a "Landing" label on github so | |
# admins can quickly query what is stuck due to CI. | |
on: | |
pull_request: | |
types: | |
- auto_merge_enabled | |
permissions: | |
pull-requests: write | |
jobs: | |
add_label: | |
name: Add "Landing Label" | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Set | |
run: gh pr edit --add-label "🛬 Landing" https://github.com/mozilla-mobile/mozilla-vpn-client/pull/$PR_NUMBER | |
env: | |
PR_NUMBER: ${{ github.event.number }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |