Skaled does not exit gracefully when it unable to connect to 2/3 nodes. #910
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: | |
types: [created] | |
pull_request_target: | |
types: [opened, closed, synchronize] | |
jobs: | |
cla: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Get Team Members" | |
id: team | |
# github-script, v6.6.3 | |
uses: actions/github-script@d556feaca394842dc55e4734bf3bb9f685482fa0 | |
with: | |
github-token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | |
result-encoding: string | |
script: | | |
const members = await github.paginate( | |
github.rest.orgs.listMembers, | |
{ org: "skalenetwork" }, | |
); | |
return members.map(m => m.login).join(","); | |
- 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' | |
# Release, v2.2.1 | |
uses: cla-assistant/github-action@b3bbab0a75fa27270069933cec6f369c0b373b4e | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
PERSONAL_ACCESS_TOKEN : ${{ secrets.PERSONAL_ACCESS_TOKEN }} | |
with: | |
path-to-signatures: 'signatures/version1/cla.json' | |
path-to-document: 'https://skale.space/cla-txt' | |
remote-organization-name: 'skalenetwork' | |
remote-repository-name: cla-sigs | |
allowlist: '${{ steps.team.outputs.result }},*[bot]' |