diff options
author | Pauli <pauli@openssl.org> | 2021-05-19 05:15:14 +0200 |
---|---|---|
committer | Pauli <pauli@openssl.org> | 2021-05-19 05:15:14 +0200 |
commit | c4fca3f705a220fba8e15354d57d258e69a2d9b4 (patch) | |
tree | 2dd633ab142f1131bcab0440587bc3920af6f720 /.github/workflows | |
parent | Avoid failing label removal if label is not there (diff) | |
download | openssl-c4fca3f705a220fba8e15354d57d258e69a2d9b4.tar.xz openssl-c4fca3f705a220fba8e15354d57d258e69a2d9b4.zip |
fips: remove unnecessary commas to get CI working
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15337)
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/fips-label.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/fips-label.yml b/.github/workflows/fips-label.yml index 536b227260..a46f213f1c 100644 --- a/.github/workflows/fips-label.yml +++ b/.github/workflows/fips-label.yml @@ -19,7 +19,7 @@ jobs: var artifacts = await github.actions.listWorkflowRunArtifacts({ owner: context.repo.owner, repo: context.repo.repo, - run_id: ${{ github.event.workflow_run.id }}, + run_id: ${{ github.event.workflow_run.id }} }); if ( artifacts.data.artifacts[0].name == 'fips_changed' ) { github.issues.addLabels({ @@ -32,7 +32,7 @@ jobs: var labels = await github.issues.listLabelsOnIssue({ issue_number: ${{ github.event.workflow_run.pull_requests[0].number }}, owner: context.repo.owner, - repo: context.repo.repo, + repo: context.repo.repo }); for ( var label in labels.data ) { |