Skip to content

Commit 4fede0c

Browse files
committed
fix: group Dependabot Actions PRs and fix DCO allowlist
- Add a Dependabot group to bundle all GitHub Actions updates into a single weekly PR instead of one per action - Fix DCO allowlist: dependabot -> dependabot[bot] to match the actual GitHub username (the old value never matched, but there were no Dependabot PRs before #517 to expose the bug)
1 parent c5bba93 commit 4fede0c

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/dependabot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ updates:
44
directory: /
55
schedule:
66
interval: weekly
7+
groups:
8+
all-actions:
9+
patterns:
10+
- "*"
711
commit-message:
812
prefix: "ci"
913
- package-ecosystem: pip

.github/workflows/dco-assistant.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
path-to-signatures: "dco-signatures.json"
3636
path-to-document: 'https://github.com/NVIDIA-NeMo/DataDesigner/blob/main/DCO'
3737
branch: 'signatures'
38-
allowlist: dependabot
38+
allowlist: dependabot[bot]
3939
create-file-commit-message: "chore: create file to store dco signatures"
4040
signed-commit-message: "chore: $contributorName has signed the dco in #$pullRequestNo"
4141
custom-notsigned-prcomment: "Thank you for your submission! We ask that $you sign our [Developer Certificate of Origin](https://github.com/NVIDIA-NeMo/DataDesigner/blob/main/DCO) before we can accept your contribution. You can sign the DCO by adding a comment below using this text:"

0 commit comments

Comments
 (0)