Skip to content

Commit bc1fa82

Browse files
4 cla assistant doesnt store signatures (#14)
Moved the CLA assistant signature database into an internal repository. Also now the CLA assistant uses a fork of the source code not the public repo.
1 parent a02ca9b commit bc1fa82

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/01-CLA-Assistant.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -20,23 +20,23 @@ jobs:
2020
steps:
2121
- name: "CLA Assistant"
2222
if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target'
23-
uses: contributor-assistant/github-action@v2.6.1
23+
uses: SiliconLabsWorkflows/cla-assistant@master
2424
env:
2525
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2626
# the below token should have repo scope and must be manually added by you in the repository's secret
2727
# This token is required only if you have configured to store the signatures in a remote repository/organization
2828
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
2929
with:
30-
path-to-signatures: 'cla_signatures_db.json'
31-
path-to-document: 'https://github.com/SiliconLabsSoftware/bluetooth-AoA-example/blob/main/cla.md'
30+
path-to-signatures: "cla_signatures_db.json"
31+
path-to-document: "https://github.com/SiliconLabsSoftware/bluetooth-AoA-example/blob/main/cla.md"
3232
# branch should not be protected
33-
branch: 'test'
34-
allowlist: user1,bot*
33+
branch: 'debug'
34+
allowlist: silabs-*,bot*
3535
# the followings are the optional inputs - If the optional inputs are not given, then default values will be taken
36-
remote-organization-name: 'SiliconLabsWorkflows'
37-
remote-repository-name: 'private-central-cla'
38-
create-file-commit-message: 'Created the CLA database file. CLA Assistant Lite bot created this file.'
39-
signed-commit-message: '$contributorName has signed the CLA in $owner/$repo#$pullRequestNo'
36+
remote-organization-name: "SiliconLabsInternal"
37+
remote-repository-name: "contributor-license-agreements"
38+
create-file-commit-message: "Created the CLA database file. CLA Assistant Lite bot created this file."
39+
signed-commit-message: "$contributorName has signed the CLA in $owner/$repo#$pullRequestNo"
4040
#custom-notsigned-prcomment: 'pull request comment with Introductory message to ask new contributors to sign'
4141
#custom-pr-sign-comment: 'The signature to be committed in order to sign the CLA'
4242
#custom-allsigned-prcomment: 'pull request comment when all contributors has signed, defaults to **CLA Assistant Lite bot** All Contributors have signed the CLA.'

0 commit comments

Comments
 (0)