Add release notes for 0.153.0 (#6948) #412
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: Merge release changes to main | |
on: | |
push: | |
branches: | |
- "release-[0-9]+.[0-9]+" | |
env: | |
VERSION_FILE: pkg/version/release.go | |
DEFAULT_BRANCH: main | |
jobs: | |
merge_release: | |
name: Merge release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 #v3.5.3 | |
with: | |
fetch-depth: 0 | |
- name: Setup identity as eksctl-bot | |
uses: ./.github/actions/setup-identity | |
with: | |
token: "${{ secrets.GITHUB_TOKEN }}" | |
- name: Merge release branch into ${{env.DEFAULT_BRANCH}} | |
run: | | |
git checkout $DEFAULT_BRANCH | |
git checkout -b merge-${{ github.sha }} | |
git merge --no-commit --no-ff ${{ github.ref }} | |
git checkout ORIG_HEAD -- $VERSION_FILE | |
git add $VERSION_FILE | |
EDITOR=true git merge --continue | |
! git diff --exit-code $DEFAULT_BRANCH...HEAD || exit 1 | |
git push --set-upstream origin HEAD | |
- uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 #v6.4.1 | |
name: Open PR to ${{env.DEFAULT_BRANCH}} | |
with: | |
github-token: ${{ secrets.EKSCTLBOT_TOKEN }} | |
script: | | |
const { data: pr } = await github.pulls.create({ | |
...context.repo, | |
title: `Merge ${context.ref} to ${{ env.DEFAULT_BRANCH }}`, | |
head: `merge-${context.sha}`, | |
base: "${{ env.DEFAULT_BRANCH }}", | |
}); | |
await github.issues.addLabels({ | |
...context.repo, | |
issue_number: pr.number, | |
labels: ["skip-release-notes"], | |
}); |