Skip to content

Bump actions/checkout from 4.0.0 to 4.1.0 #9

Bump actions/checkout from 4.0.0 to 4.1.0

Bump actions/checkout from 4.0.0 to 4.1.0 #9

Workflow file for this run

---
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@b4ffde65f46336ab88eb53be808477a3936bae11
with:
token: ${{ secrets.ORG_TOKEN }}
fetch-depth: 0 # otherwise, you will fail to push refs to dest repo
- name: 🔁 Rebase
uses: z-shell/.github/actions/[email protected]
with:
autosquash: ${{ contains(github.event.comment.body, '/autosquash') || contains(github.event.comment.body, '/rebase-autosquash') }}
env:
GITHUB_TOKEN: ${{ secrets.ORG_TOKEN }}