Bump github/codeql-action in the github-actions group (#1986) #124
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: Release Note | |
on: | |
push: | |
branches: | |
- master | |
permissions: | |
contents: read | |
jobs: | |
release-note: | |
permissions: | |
contents: write # for peter-evans/create-pull-request to create branch | |
pull-requests: write # for peter-evans/create-pull-request to create a PR | |
name: README.md | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 | |
with: | |
fetch-depth: 0 | |
- run: git tag | |
- run: python3 tools/release/note_create.py | |
- run: git diff | |
- run: python3 tools/release/note_update.py | |
- run: git diff | |
- uses: peter-evans/create-pull-request@9153d834b60caba6d51c9b9510b087acf9f33f83 # v6.0.4 | |
with: | |
commit-message: Update RELEASE.md [bot] | |
branch: bot-RELEASE.md | |
delete-branch: true | |
title: 'Update RELEASE.md [bot]' | |
body: | | |
README.md: auto-updated by .github/workflows/release.note.yml |