Skip to content

Commit

Permalink
fix release 1.29 github action (#1097)
Browse files Browse the repository at this point in the history
  • Loading branch information
XudongLiuHarold authored Jun 14, 2024
1 parent 3f0606e commit d76ab69
Show file tree
Hide file tree
Showing 4 changed files with 130 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/auto-sync-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Check Latest Release Tag
id: check
run: |
git fetch --tags
git fetch --tags --force
latest_tag=$(git tag --sort=-creatordate | head -n 1)
echo "latest_tag=${latest_tag}" >> $GITHUB_OUTPUT
Expand Down
62 changes: 62 additions & 0 deletions .github/workflows/bump-k8s-dep.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
name: Bump latest Kubernetes dependecies

on:
schedule:
- cron: '0 0 */2 * *' # Run every two days at UTC midnight

workflow_dispatch: # Use for manaully trigger to debug

jobs:
bump-k8s-dep-to-latest-pre-release:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'

- name: Bump latest k8s.io dependencies
id: bump
run: |
LATEST_VERSION=$(./hack/bump-k8s-dep.sh)
echo "latest_version=$LATEST_VERSION" >> $GITHUB_OUTPUT
- name: Configure Git
run: |
git config user.name "github-actions[bot]"
git config user.email "[email protected]"
- name: Check for changes and update version
id: changes
run: |
git_diff_output=$(git diff)
if [ -n "$git_diff_output" ]; then
echo "changes=true" >> $GITHUB_OUTPUT
fi
- name: Check if update PR exist
id: exist
run: |
LATEST_VERSION=${{ steps.bump.outputs.latest_version }}
HEAD_BRANCH="topic/github-actions/auto-bump/k8s-dependencies-$LATEST_VERSION"
echo "$HEAD_BRANCH"
if ! git ls-remote --exit-code origin refs/heads/$HEAD_BRANCH; then
echo "exist=true" >> $GITHUB_OUTPUT
echo "head_branch=$HEAD_BRANCH" >> $GITHUB_OUTPUT
fi
- name: Create PR
if: ${{ steps.changes.outputs.changes && steps.exist.outputs.exist }}
run: |
HEAD_BRANCH=${{ steps.exist.outputs.head_branch }}
git checkout -b "$HEAD_BRANCH"
git add go.mod go.sum
git commit -sm "Bump Kubernetes group dependencies updates"
git push origin "$HEAD_BRANCH"
gh pr create --base master --title ":seedling:(deps) Bump the Kubernetes group to ${{ steps.bump.outputs.latest_version }}" --label "ok-to-test" --body "This is an automatically generated pull request to bump the latest k8s dependencies."
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
64 changes: 64 additions & 0 deletions .github/workflows/bump-test-k8s-dep.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
name: Bump latest Kubernetes dependecies for e2e test

on:
schedule:
- cron: '0 12 */2 * *' # Run every two days at UTC noon

workflow_dispatch: # Use for manaully trigger to debug

jobs:
bump-test-k8s-dep-to-latest-pre-release:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'test/e2e/go.mod'

- name: Bump latest k8s.io dependencies
id: bump
run: |
cd test/e2e
LATEST_VERSION=$(../../hack/bump-k8s-dep.sh test-e2e)
echo "latest_version=$LATEST_VERSION" >> $GITHUB_OUTPUT
cd ../..
- name: Configure Git
run: |
git config user.name "github-actions[bot]"
git config user.email "[email protected]"
- name: Check for changes and update version
id: changes
run: |
git_diff_output=$(git diff)
if [ -n "$git_diff_output" ]; then
echo "changes=true" >> $GITHUB_OUTPUT
fi
- name: Check if update PR already exist
id: exist
run: |
LATEST_VERSION=${{ steps.bump.outputs.latest_version }}
HEAD_BRANCH="topic/github-actions/auto-bump/test-e2e-k8s-dependencies-$LATEST_VERSION"
echo "$HEAD_BRANCH"
if ! git ls-remote --exit-code origin refs/heads/$HEAD_BRANCH; then
echo "exist=true" >> $GITHUB_OUTPUT
echo "head_branch=$HEAD_BRANCH" >> $GITHUB_OUTPUT
fi
- name: Create PR
if: ${{ steps.changes.outputs.changes && steps.exist.outputs.exist }}
run: |
HEAD_BRANCH=${{ steps.exist.outputs.head_branch }}
git checkout -b "$HEAD_BRANCH"
git add test/e2e/go.mod test/e2e/go.sum
git commit -sm "Bump kubernetes group dependencies updates for e2e test"
git push origin "$HEAD_BRANCH"
gh pr create --base master --title ":seedling:(deps)test: Bump the kubernetes group to ${{ steps.bump.outputs.latest_version }} for e2e test" --label "ok-to-test" --body "This is an automatic generated pull request to bump the latest k8s dependencies for e2e test."
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6 changes: 3 additions & 3 deletions .github/workflows/generate-release-notes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Check Latest Release Tag
id: check
run: |
git fetch --tags
git fetch --tags --force
latest_tag=$(git tag --sort=-creatordate | head -n 1)
echo "latest_tag=${latest_tag}" >> $GITHUB_OUTPUT
Expand All @@ -52,11 +52,11 @@ jobs:
latest_tag=${{ steps.check.outputs.latest_tag }}
if [[ latest_tag =~ ${PRERELEASE_SEMVER_REGEX} ]]; then
second_latest_release_tag=$(git tag --sort=-v:refname | grep -E ${SEMVER_REGEX} | sed -n '2p')
second_latest_release_tag=$(git tag --sort=-v:refname | grep -E ${SEMVER_REGEX} | awk 'p{print; exit} /${latest_tag}/{p=1}')
echo "${latest_tag} is a pre-release, return second latest release tag ${second_latest_release_tag}"
echo "pre_release=1" >> $GITHUB_OUTPUT
else
second_latest_release_tag=$(git tag --sort=-v:refname | grep -E ${STABLE_RELEASE_SEMVER_REGEX} | sed -n '2p')
second_latest_release_tag=$(git tag --sort=-v:refname | grep -E ${STABLE_RELEASE_SEMVER_REGEX} | awk 'p{print; exit} /${latest_tag}/{p=1}')
echo "${latest_tag} is a stable release, return second stable release tag ${second_latest_release_tag}"
fi
Expand Down

0 comments on commit d76ab69

Please sign in to comment.