This repository was archived by the owner on Jun 17, 2026. It is now read-only.
chore(deps): update github/codeql-action digest to 8aad20d (stable-f44) #54
Workflow file for this run
This file contains hidden or 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: Backport Merged Pull Requests | |
| on: | |
| pull_request_target: | |
| types: [closed] | |
| permissions: {} | |
| jobs: | |
| cherry-pick: | |
| # Ensures the PR was actually merged AND has the correct backport label | |
| if: | | |
| github.event.pull_request.merged == true && | |
| contains(github.event.pull_request.labels.*.name, 'cherry-pick') | |
| runs-on: ubuntu-slim | |
| steps: | |
| - name: Generate a GitHub App Token | |
| id: generate-token | |
| uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3 | |
| with: | |
| client-id: ${{ secrets.AURORABOT_APP_ID }} | |
| private-key: ${{ secrets.AURORABOT_PRIVATE_KEY }} | |
| - name: Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| with: | |
| # Use the dynamically generated GitHub App token | |
| token: ${{ steps.generate-token.outputs.token }} | |
| fetch-depth: 0 | |
| - name: Configure Git Author | |
| run: | | |
| git config --global user.name "aurora-backport-bot[bot]" | |
| git config --global user.email "aurora-backport-bot[bot]@users.noreply.github.com" | |
| - name: Create Backport Pull Requests | |
| uses: korthout/backport-action@66065406958f46e82238fd59546f5a99e69e22aa # v4.5.2 | |
| with: | |
| # Use the dynamically generated GitHub App token here too | |
| github_token: ${{ steps.generate-token.outputs.token }} | |
| target_branches: "stable-f44" | |
| add_labels: "backported-to-stable" | |
| pull_description: | | |
| This is an automated backport of PR #${pull_number} to `${target_branch}`. | |
| **_Please review the changes._** | |
| ### Original PR Description: | |
| ${pull_description} |