2023-09-29 14:46:53 +00:00
name : Validation Comment
2023-09-19 19:06:09 +00:00
on :
pull_request_target :
branches :
- dev-v*
- release-v*
jobs :
2023-09-29 14:46:53 +00:00
validation-comment :
2023-09-19 19:06:09 +00:00
name : Make validation comment on PR
runs-on : ubuntu-latest
permissions : write-all
steps :
- name : Make validation comment
uses : actions/github-script@v4
with :
github-token : ${{secrets.GITHUB_TOKEN}}
script : |
github.issues.createComment({
issue_number : context.issue.number,
owner : context.repo.owner,
repo : context.repo.repo,
2023-09-29 17:04:38 +00:00
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>
2023-10-04 21:03:18 +00:00
- 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.
2023-09-29 17:04:38 +00:00
- Approve the PR to run the CI check.`
2023-09-19 19:06:09 +00:00
})