chore(deps): update odh-pipeline-runtime-pytorch-rocm-py311-ubi9 to 210546e #10
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 Review Requested Label | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
types: [opened] | |
permissions: | |
pull-requests: write | |
jobs: | |
add-label: | |
if: contains(github.event.pull_request.labels.*.name, 'konflux-nudge') == false | |
runs-on: ubuntu-latest | |
steps: | |
- name: Add review-requested label | |
uses: actions/github-script@v7 | |
with: | |
# language=javascript | |
script: | | |
await github.rest.issues.addLabels({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
issue_number: context.payload.pull_request.number, | |
labels: ['review-requested'] | |
}); |