Bump github/codeql-action from 3.27.0 to 3.27.5 #262
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
# This cannot rebase workflow changes into a PR | |
# It also only works if the GITHUB_TOKEN has permission to push to the branch | |
# see: https://github.com/cirrus-actions/rebase/issues/12#issuecomment-632594995 | |
on: | |
issue_comment: | |
types: [created] | |
name: Automatic Rebase | |
permissions: | |
contents: read | |
jobs: | |
rebase: | |
permissions: | |
contents: write # for cirrus-actions/rebase to push code to rebase | |
pull-requests: write # for actions/github-script to create PR comment | |
name: Rebase | |
if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '/rebase') | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the latest code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
fetch-depth: 0 | |
- name: Post rebase started comment to pull request | |
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 | |
continue-on-error: true | |
with: | |
script: | | |
const backport_start_body = `Started rebase: https://github.com/${context.repo.owner}/${context.repo.repo}/actions/runs/${process.env.GITHUB_RUN_ID}`; | |
await github.issues.createComment({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: backport_start_body | |
}); | |
- name: Automatic Rebase | |
uses: cirrus-actions/rebase@b87d48154a87a85666003575337e27b8cd65f691 # 1.8 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |