mirror of
https://github.com/openssl/openssl.git
synced 2025-03-01 19:28:10 +08:00
Avoid failing label removal if label is not there
Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15309)
This commit is contained in:
parent
a51ccd5be7
commit
753f1f24ac
16
.github/workflows/fips-label.yml
vendored
16
.github/workflows/fips-label.yml
vendored
@ -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({
|
||||
@ -29,10 +29,20 @@ jobs:
|
||||
labels: ['severity: fips change']
|
||||
});
|
||||
} else if ( artifacts.data.artifacts[0].name == 'fips_unchanged' ) {
|
||||
github.issues.removeLabel({
|
||||
var labels = await github.issues.listLabelsOnIssue({
|
||||
issue_number: ${{ github.event.workflow_run.pull_requests[0].number }},
|
||||
owner: context.repo.owner,
|
||||
repo: context.repo.repo,
|
||||
name: 'severity: fips change'
|
||||
});
|
||||
|
||||
for ( var label in labels.data ) {
|
||||
if (labels.data[label].name == 'severity: fips change') {
|
||||
github.issues.removeLabel({
|
||||
issue_number: ${{ github.event.workflow_run.pull_requests[0].number }},
|
||||
owner: context.repo.owner,
|
||||
repo: context.repo.repo,
|
||||
name: 'severity: fips change'
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user