ci: add TCM_OS_OVERRIDE to ./print-docker-image.sh #74227
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: Remove CI-Requested label | |
on: | |
pull_request_target: | |
types: [opened, reopened, synchronize] | |
permissions: | |
contents: read | |
pull-requests: write | |
jobs: | |
remove_label: | |
name: Remove label | |
if: ${{ contains(github.event.*.labels.*.name, 'CI-Requested') }} | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Remove label | |
run: gh pr edit ${{ github.event.pull_request.number }} --remove-label "CI-Requested" | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GH_REPO: ${{ github.repository }} |