-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
435 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# This file is part of the Stooa codebase. | ||
# | ||
# (c) 2020 - present Runroom SL | ||
# | ||
# For the full copyright and license information, please view the LICENSE | ||
# file that was distributed with this source code. | ||
|
||
# This workflow checks if the contributor has signed and accepted DCO agreement. | ||
|
||
name: DCO Assistant | ||
|
||
on: | ||
issue_comment: | ||
types: [created] | ||
pull_request_target: | ||
types: [opened, closed, synchronize] | ||
|
||
jobs: | ||
Signature: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: DCO Assistant | ||
if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the DCO Document and I hereby sign the DCO') || github.event_name == 'pull_request_target' | ||
uses: cla-assistant/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
PERSONAL_ACCESS_TOKEN : ${{ secrets.PERSONAL_ACCESS_TOKEN }} | ||
with: | ||
path-to-signatures: signatures/version1/dco.json | ||
path-to-document: https://github.com/Stooa/Documentation/blob/main/DCOLICENSE | ||
branch: main | ||
remote-organization-name: Stooa | ||
remote-repository-name: DCO-signatures | ||
use-dco-flag: true | ||
create-file-commit-message: 'Creating file for storing DCO Signatures' | ||
signed-commit-message: '$contributorName has signed the DCO in #$pullRequestNo' | ||
custom-allsigned-prcomment: '**DCO Assistant** All Contributors have signed the DCO. 📝 ✅ ' |
Oops, something went wrong.