Skip to content

Commit

Permalink
Merge branch 'main' into pr/285
Browse files Browse the repository at this point in the history
  • Loading branch information
mattleibow committed Nov 5, 2024
2 parents fb2d770 + 2bb8b91 commit f154729
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 f154729

Please sign in to comment.