Bump Tekton Pipeline from v0.50.5 to v0.62.3 #1558
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: Release Note Linter | |
on: | |
pull_request: | |
branches: | |
- main | |
- "release-v*" # release branches | |
jobs: | |
release-note-linter: | |
name: Release Note Linter | |
runs-on: ubuntu-latest | |
steps: | |
- name: Sanity Check Release Notes | |
if: github.actor != 'dependabot[bot]' | |
env: | |
PR_NUMBER: ${{ github.event.number }} | |
run: | | |
# Validate PR release notes | |
echo "Going to validate PR ${PR_NUMBER}" | |
echo "First making sure you have not left the PR template as is" | |
# Describe any user facing changes here, or delete this block. | |
TEMPLATE_LEFT_AS_IS=$(wget -q -O- https://api.github.com/repos/shipwright-io/build/pulls/${PR_NUMBER} | jq '.body | match("(Describe any user facing changes here, or delete this block)")') | |
if [ -z "${TEMPLATE_LEFT_AS_IS}" ]; then | |
echo "You appear to have attempted to update the PR template to define a release note." | |
else | |
echo "You have not made any changes for release notes in your PR description. Edit your PR description per the instructions at https://raw.githubusercontent.com/shipwright-io/build/main/.github/pull_request_template.md" | |
exit 1 | |
fi | |
echo "Now checking against valid structure for release notes" | |
MATCHES=$(wget -q -O- https://api.github.com/repos/shipwright-io/build/pulls/${PR_NUMBER} | jq '.body | match("(```release-note\r\n(.*|NONE|action required: .*)\r\n```)")') | |
if [ -z "${MATCHES}" ]; then | |
echo "Your Release Notes were not properly defined or they are not in place, please make sure you add them." | |
echo "See our PR template for more information: https://raw.githubusercontent.com/shipwright-io/build/main/.github/pull_request_template.md" | |
exit 1 | |
else | |
echo "Your Release Notes are properly in place!" | |
fi |