Skip to content

Commit

Permalink
Create rebase.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mattleibow authored Nov 5, 2024
1 parent ba76f96 commit 2bb8b91
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/rebase.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Automatic Rebase

on:
issue_comment:
types: [created]

permissions:
pull-requests: write
contents: write

jobs:
rebase:
name: Rebase
runs-on: ubuntu-latest
if: github.event.issue.pull_request != '' && startsWith(github.event.comment.body, '/rebase')
steps:
- name: Checkout the latest code
uses: actions/checkout@v2
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@1.7
with:
autosquash: ${{ startsWith(github.event.comment.body, '/rebase-squash') }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 2bb8b91

Please sign in to comment.