Skip to content

Commit

Permalink
Another fix for the CLA repo code. (#100)
Browse files Browse the repository at this point in the history
  • Loading branch information
jezdez committed May 3, 2023
1 parent 5dc9765 commit de9d5b4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions check-cla/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,10 @@ runs:
core.setOutput('has_label', has_label);
core.debug(`has_label: ${has_label}`);
const { cla_repo_owner, cla_repo_name } = '${{ inputs.cla_repo }}'.split('/', 2);
const cla_repo = '${{ inputs.cla_repo }}'.split('/', 2);
const { content, encoding } = (await github.rest.repos.getContent({
owner: cla_repo_owner,
repo: cla_repo_name,
owner: cla_repo[0],
repo: cla_repo[1],
path: '${{ inputs.cla_path }}'
})).data;
const contributors = JSON.parse(
Expand Down

0 comments on commit de9d5b4

Please sign in to comment.