update-stable-txt #8352
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: update-stable-txt | |
on: | |
workflow_dispatch: {} | |
schedule: | |
- cron: "0 */1 * * *" | |
push: | |
paths: | |
- hack/update-stable-txt.sh | |
jobs: | |
update-stable-txt: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0 | |
- name: configure system | |
run: | | |
git config user.name 'github-actions[bot]' | |
git config user.email 'github-actions[bot]@users.noreply.github.com' | |
gh auth login --with-token < <(echo ${{ secrets.GITHUB_TOKEN }}) | |
gh auth status | |
- name: produce tag dump | |
run: | | |
./hack/update-stable-txt.sh | |
- name: check stable.txt format | |
id: check | |
run: | | |
STABLE="$(<./kodata/metadata/stable.txt)" | |
if [[ "$STABLE" =~ ^v[0-9]\.[0-9]{1,2}\.[0-9]{1,2}$ ]]; then | |
echo "valid=true" >> $GITHUB_OUTPUT | |
fi | |
- name: determine changes | |
if: ${{ steps.check.outputs.valid == 'true' }} | |
id: determine-changes | |
run: | | |
if git diff --name-only --diff-filter=ACMRT | grep -E 'kodata/metadata/stable.txt$'; then | |
echo "changes=true" >> $GITHUB_OUTPUT | |
fi | |
- name: commit and push if there are changes | |
if: ${{ steps.determine-changes.outputs.changes == 'true' }} | |
run: | | |
STABLE="$(<./kodata/metadata/stable.txt)" | |
TIMESTAMP="$(git log -n1 --pretty='format:%cd' --date=format:'%Y-%m-%d-%H-%M')" | |
NEW_BRANCH="new-stable-kubernetes-version-$STABLE-released-${TIMESTAMP}" | |
git add ./kodata/metadata/stable.txt | |
git branch "${NEW_BRANCH}" | |
git checkout "${NEW_BRANCH}" | |
git commit -m "update Kubernetes stable.txt to $STABLE for ${TIMESTAMP}" | |
git push -f origin "${NEW_BRANCH}" | |
gh pr create --title "Update stable.txt to $STABLE ${TIMESTAMP}" --body "updates stable.txt to $STABLE for ${TIMESTAMP}" | |
gh pr merge --merge --auto "${NEW_BRANCH}" |