Bump taskcluster-taskgraph from 15.1.3 to 15.4.0 in the build-tools-pip group #176
Workflow file for this run
This file contains hidden or 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 }} |