Skip to content

Commit

Permalink
ci: use main instead
Browse files Browse the repository at this point in the history
  • Loading branch information
tassioFront authored Sep 2, 2024
1 parent 3ea3978 commit 9f7993a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/merge-dependabot-prs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ jobs:

- name: Create combined branch
run: |
git checkout -b combined-dependabot-updates
git checkout -b ci/combined-dependabot-updates
for branch in $(git branch -r | grep dependabot | sed 's/origin\///'); do
git merge --no-edit $branch || true
done
- name: Push combined branch
run: |
git push origin combined-dependabot-updates
git push origin ci/combined-dependabot-updates
- name: Create pull request
uses: peter-evans/create-pull-request@v3
Expand All @@ -39,4 +39,4 @@ jobs:
branch: combined-dependabot-updates
title: 'Combined Dependabot Updates'
body: 'This pull request combines all Dependabot updates for this month.'
base: master
base: main

0 comments on commit 9f7993a

Please sign in to comment.