Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Commit

Permalink
Merge pull request #91 from klaytn/iv0rish-create-cla-pipeline
Browse files Browse the repository at this point in the history
Create CLA.yml
  • Loading branch information
iv0rish authored Jul 25, 2022
2 parents b1fbec7 + 59eb077 commit 7fe0ff1
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/CLA.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: "CLA Assistant"
on:
issue_comment:
types: [created]
pull_request_target:
types: [opened, closed, synchronize]

jobs:
CLAssistant:
runs-on: ubuntu-latest
steps:
- name: "CLA Assistant"
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'
uses: cla-assistant/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PERSONAL_ACCESS_TOKEN: ${{ secrets.CLA_PERSONAL_ACCESS_TOKEN }}
with:
path-to-signatures: "${{ github.event.repository.name }}/signatures/version1/cla.json"
path-to-document: "https://gist.github.com/e78f99e1c527225637e269cff1bc7e49" # Klaytn Gist
branch: "master"
allowlist: dependabot[bot], KlaytnDev, circleci-klaytn
remote-repository-name: ${{ secrets.CLA_REPOSITORY }}

0 comments on commit 7fe0ff1

Please sign in to comment.