[site]: UIP update to 2.1.0-beta.2
(UIP 2 April) + ESL Toggleable examples migration
#9729
Workflow file for this run
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
name: CLA | |
on: | |
issue_comment: # To detect standalone comment | |
types: [created] | |
pull_request_target: | |
types: [opened,closed,synchronize] | |
permissions: | |
actions: write | |
contents: write | |
pull-requests: write | |
statuses: write | |
jobs: | |
cla-assistant: | |
name: Assistant Check | |
runs-on: ubuntu-latest | |
steps: | |
- name: cla-assistant-check | |
uses: cla-assistant/github-action@v2.3.2 | |
if: startsWith(github.event.comment.body, 'recheckcla') || contains(github.event.comment.body, 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
PERSONAL_ACCESS_TOKEN : ${{ secrets.PERSONAL_ACCESS_TOKEN }} | |
with: | |
path-to-signatures: 'signatures/cla.json' | |
path-to-document: 'https://github.com/exadel-inc/esl/blob/main/CLA.md' | |
branch: 'history/cla' | |
allowlist: ala-n,julia-murashko,yadamskaya,dshovchko,bot* | |
signed-commit-message: 'chore: $contributorName has signed the CLA in #$pullRequestNo' | |
create-file-commit-message: 'chore: created file for storing CLA Signatures' | |
custom-notsigned-prcomment: 'Thank you for your submission, we really appreciate it. We ask that you sign our <a href="https://github.com/exadel-inc/esl/blob/main/CLA.md">Contributor Licence Agreement</a> before we can accept your contribution. You can sign the CLA by just posting a Pull Request Comment same as the below format.' |