Skip to content

Commit fe1c5c2

Browse files
committed
chore: skip commit validation for Dependabot and GitHub Actions PRs
1 parent 9841e74 commit fe1c5c2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/validate-commits.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ jobs:
88
validate-commits:
99
runs-on: ubuntu-latest
1010
# Skip validation for Dependabot PRs since they follow their own commit format
11-
if: github.actor != 'dependabot[bot]'
11+
# Also skip for GitHub Copilot PRs
12+
if: github.actor != 'dependabot[bot]' && github.actor != 'github-actions[bot]'
1213

1314
steps:
1415
- name: Checkout code

0 commit comments

Comments
 (0)