From 490a2b4bf907051eece0ad265c2a3bc4f24a749b Mon Sep 17 00:00:00 2001 From: Sebastian Ullrich Date: Wed, 7 Aug 2024 14:05:00 +0200 Subject: [PATCH] chore: CI: fix rebase command --- .github/workflows/rebase-on-comment.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/rebase-on-comment.yml b/.github/workflows/rebase-on-comment.yml index a7d133a53f..03d7f5e483 100644 --- a/.github/workflows/rebase-on-comment.yml +++ b/.github/workflows/rebase-on-comment.yml @@ -10,6 +10,8 @@ jobs: if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '!rebase') && github.event.comment.user.login == github.event.issue.user.login runs-on: ubuntu-latest steps: + - name: Checkout repository + uses: actions/checkout@v4 - name: Rebase PR branch onto base branch env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}