We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82a3ae9 commit 41833f3Copy full SHA for 41833f3
check-cla/action.yml
@@ -57,9 +57,10 @@ runs:
57
with:
58
path: https://raw.githubusercontent.com/${{ inputs.cla_repo }}/main/${{ inputs.cla_path }}
59
parse: json
60
+ default: '[]'
61
62
- name: Determine whether the contributor has signed the CLA
- run: echo HAS_SIGNED=${{ contains(fromJSON(steps.read_cla.outputs.content)['contributors'], env.CONTRIBUTOR) }} >> $GITHUB_ENV
63
+ run: echo HAS_SIGNED=${{ contains(fromJSON(steps.read_cla.outputs.content), env.CONTRIBUTOR) }} >> $GITHUB_ENV
64
shell: bash
65
66
# if contributor has already signed, add [cla-signed] label
0 commit comments