We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 618819a commit 73a1d3dCopy full SHA for 73a1d3d
.github/workflows/CI.yml
@@ -75,7 +75,11 @@ jobs:
75
merge:
76
runs-on: ubuntu-latest
77
needs: [test]
78
- if: github.actor == 'dependabot[bot]' || github.actor == 'pre-commit-ci[bot]' # Detect that the PR author is dependabot or pre-commit-ci
+ # Only run if the PR author is Dependabot or pre-commit-ci
79
+ if: >
80
+ github.actor == 'dependabot[bot]' ||
81
+ github.actor == 'pre-commit-ci[bot]'
82
+
83
steps:
84
- uses: actions/checkout@v4
85
- name: Enable auto-merge for Dependabot PRs
0 commit comments