Skip to content

Commit

Permalink
ci: change pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
tassioFront authored Sep 2, 2024
1 parent 9f7993a commit e103c43
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/merge-dependabot-prs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ jobs:
- name: Create combined branch
run: |
git checkout -b ci/combined-dependabot-updates
for branch in $(git branch -r | grep dependabot | sed 's/origin\///'); do
for branch in $(git branch -r | grep 'dependabot/npm_and_yarn' | sed 's/origin\///'); do
echo $branch
git merge --no-edit $branch || true
done
Expand Down

0 comments on commit e103c43

Please sign in to comment.