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 9841e74 commit fe1c5c2Copy full SHA for fe1c5c2
.github/workflows/validate-commits.yml
@@ -8,7 +8,8 @@ jobs:
8
validate-commits:
9
runs-on: ubuntu-latest
10
# Skip validation for Dependabot PRs since they follow their own commit format
11
- if: github.actor != 'dependabot[bot]'
+ # Also skip for GitHub Copilot PRs
12
+ if: github.actor != 'dependabot[bot]' && github.actor != 'github-actions[bot]'
13
14
steps:
15
- name: Checkout code
0 commit comments