Bump rancher-webhook to v0.6.1 #3468
Workflow file for this run
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: Validation Comment | |
on: | |
pull_request_target: | |
branches: | |
- dev-v* | |
- release-v* | |
paths: | |
- 'assets/**' | |
- 'charts/**' | |
- 'packages/**' | |
jobs: | |
validation-comment: | |
name: Make validation comment on PR | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
steps: | |
- name: Make validation comment | |
uses: actions/github-script@v7 | |
with: | |
github-token: ${{secrets.GITHUB_TOKEN}} | |
script: | | |
github.rest.issues.createComment({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: | |
`## Validation steps | |
- Ensure all container images have repository and tag on the same level to ensure that all container images are included in rancher-images.txt which are used by airgap customers. | |
<pre> | |
Ex:- | |
longhorn-controller: | |
repository: rancher/hardened-sriov-cni | |
tag: v2.6.3-build20230913 | |
</pre> | |
- Add a 👍 (thumbs up) reaction to this comment once done. CI won't pass without this reaction to the github-action bot's latest validation comment. | |
- Approve the PR to run the CI check.` | |
}) |