Skip to content

build(deps): bump github/codeql-action from 3.26.2 to 3.26.8 #97

build(deps): bump github/codeql-action from 3.26.2 to 3.26.8

build(deps): bump github/codeql-action from 3.26.2 to 3.26.8 #97

name: version-reminder
on:
pull_request:
types:
- opened
permissions:
contents: read
concurrency:
group: ${{ github.repository }}/${{ github.workflow }}/${{ github.ref }}
cancel-in-progress: true
jobs:
version-reminder:
name: version-reminder
runs-on: ubuntu-22.04
timeout-minutes: 1
permissions:
pull-requests: write
steps:
- uses: step-security/harden-runner@5c7944e73c4c2a096b17a9cb74d65b6c2bbafbde # v2.9.1
with:
egress-policy: audit
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
ref: master
- name: version-check
id: version_check
if: hashFiles('VERSION')
run: |
VERSION_FILE="VERSION"
setOutput() {
echo "${1}=${2}" >> "${GITHUB_OUTPUT}"
}
git fetch origin master
if ! git diff --unified=0 origin/master.. -- $VERSION_FILE | grep '^[+-]' | grep -i "version" >/dev/null
then
echo "remind bumping"
setOutput "remind" 'true'
else
echo "version is being BUMPED $(cat $VERSION_FILE)"
setOutput "remind" 'false'
fi
- name: version-reminder-comment
if: hashFiles('VERSION') && steps.version_check.outputs.remind == 'true'
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const backtick = '`';
const body = `
### :bulb: **Don't forget to bump the VERSION file**
By bumping the version in ${backtick}VERSION${backtick} file, we trigger a repo TAG and repo RELEASE, else nothing happens.
`.trim();
github.rest.issues.createComment({
issue_number: context.payload.pull_request.number,
owner: context.repo.owner,
repo: context.repo.repo,
body
});