Update version and changelog for v24.11.12 release #1033
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: CI | |
on: | |
push: | |
branches: [master, release] | |
pull_request: | |
branches: [master] | |
release: | |
types: [published] | |
jobs: | |
test: | |
name: All checks are passed | |
uses: ./.github/workflows/test.yaml | |
secrets: inherit | |
approve: | |
name: Approve bot PR | |
runs-on: ubuntu-latest | |
if: endsWith(github.actor, '[bot]') | |
needs: test | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: metadata | |
id: metadata | |
if: github.actor == 'dependabot[bot]' | |
uses: dependabot/fetch-metadata@v2 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Enable auto-merge for bot PRs | |
run: gh pr merge --auto --squash --delete-branch "$PR_URL" | |
env: | |
PR_URL: ${{ github.event.pull_request.html_url }} | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |