build(deps): bump trunk-io/trunk-action from 78986c82771014936f5ee91d639eee272c3c7c08 to d5b1b61d0beee562512f530a278b6a2931fba857 #1082
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
# @format | |
--- | |
name: "🔁 Rebase" | |
on: | |
issue_comment: | |
types: [created] | |
jobs: | |
rebase: | |
runs-on: ubuntu-latest | |
name: 🔁 Rebase | |
# Automate with comments: /autosquash, /rebase | |
if: >- | |
github.event.issue.pull_request != '' && ( | |
contains(github.event.comment.body, '/rebase') || | |
contains(github.event.comment.body, '/autosquash') | |
) | |
steps: | |
- name: ⤵️ Check out code from GitHub | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
fetch-depth: 0 # otherwise, you will fail to push refs to dest repo | |
- name: 🔁 Rebase | |
uses: z-shell/.github/actions/rebase@v1.0.8 | |
with: | |
autosquash: ${{ contains(github.event.comment.body, '/autosquash') || contains(github.event.comment.body, '/rebase-autosquash') }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |