We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d94408 commit 85e6255Copy full SHA for 85e6255
.github/workflows/test-and-build-from-fork.yaml
@@ -44,8 +44,14 @@ jobs:
44
SEGMENT_KEY: ${{ secrets.SEGMENT_KEY_DEV }}
45
run: npm run test
46
47
+ merge-dependabot-pr:
48
+ name: Merge Dependabot PR
49
+ runs-on: ubuntu-latest
50
+ needs:
51
+ - test-and-build
52
+ if: github.event.pull_request.user.login == 'dependabot[bot]'
53
+ steps:
54
- name: Enable auto-merge for Dependabot PRs
- if: github.event.pull_request.user.login == 'dependabot[bot]'
55
run: gh pr merge --auto --squash "$PR_URL"
56
env:
57
PR_URL: ${{github.event.pull_request.html_url}}
0 commit comments