Skip to content

Commit 48546f4

Browse files
committed
chore: skip commit validation for Dependabot and Copilot PRs
1 parent fe1c5c2 commit 48546f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/validate-commits.yml

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

1414
steps:
1515
- name: Checkout code

0 commit comments

Comments
 (0)