From 50becc86e90bdf251eb5b0c76c343272a1d47986 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Dvo=C5=99=C3=A1k?= Date: Sat, 3 Aug 2024 21:34:04 +0200 Subject: [PATCH] Update rebaser.yml --- .github/workflows/rebaser.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/rebaser.yml b/.github/workflows/rebaser.yml index cb7afa59da67..038124f2c684 100644 --- a/.github/workflows/rebaser.yml +++ b/.github/workflows/rebaser.yml @@ -6,14 +6,14 @@ on: push: branches: - tf/actions/autorebase + workflow_dispatch: jobs: update-branches: runs-on: ubuntu-latest strategy: matrix: - branch: [tf/SHT4x, tf/s35770] - + branch: [main, tf/SHT4x, tf/s35770] steps: - name: Checkout repository uses: actions/checkout@v2 @@ -34,5 +34,5 @@ jobs: - name: Checkout and rebase branch run: | git checkout ${{ matrix.branch }} - git rebase upstream/master + git rebase upstream/main git push origin ${{ matrix.branch }} --force