diff options
Diffstat (limited to '.github/workflows/rebase.yml')
-rw-r--r-- | .github/workflows/rebase.yml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.github/workflows/rebase.yml b/.github/workflows/rebase.yml index 8cebe2a6..a64526e6 100644 --- a/.github/workflows/rebase.yml +++ b/.github/workflows/rebase.yml @@ -1,7 +1,9 @@ +name: Automatic Rebase + on: issue_comment: - types: [created] -name: Automatic Rebase + types: [ created ] + jobs: rebase: name: Rebase @@ -9,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout the latest code - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Automatic Rebase |