chore(deps): bump lodash-es from 4.17.22 to 4.17.23 #99
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: Automatic Rebase | |
| on: | |
| issue_comment: | |
| types: [created] | |
| permissions: | |
| contents: read | |
| jobs: | |
| rebase: | |
| permissions: | |
| contents: write # for cirrus-actions/rebase to push code to rebase | |
| pull-requests: read # for cirrus-actions/rebase to get info about PR | |
| name: Rebase | |
| runs-on: ubuntu-latest | |
| if: >- | |
| github.event.issue.pull_request != '' && | |
| ( | |
| contains(github.event.comment.body, '/rebase') || | |
| contains(github.event.comment.body, '/autosquash') | |
| ) | |
| concurrency: | |
| group: rebase-${{ github.ref }} | |
| cancel-in-progress: false | |
| steps: | |
| - name: Harden the runner (Audit all outbound calls) | |
| uses: step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0 | |
| with: | |
| egress-policy: audit | |
| - name: Checkout the latest code | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| fetch-depth: 0 # otherwise, you will fail to push refs to dest repo | |
| - name: Automatic Rebase | |
| uses: cirrus-actions/rebase@b87d48154a87a85666003575337e27b8cd65f691 # 1.8 | |
| with: | |
| autosquash: ${{ contains(github.event.comment.body, '/autosquash') || contains(github.event.comment.body, '/rebase-autosquash') }} | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |