We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f529aa commit bd5cd4bCopy full SHA for bd5cd4b
.github/workflows/restart-preempted-libcxx-jobs.yaml
@@ -11,18 +11,16 @@ name: Restart Preempted Libc++ Workflow
11
12
on:
13
workflow_run:
14
- workflows:
15
- - Build and Test libc\+\+
+ workflows: [Build and Test libc\+\+]
16
types:
17
- - failure
18
- - canceled
+ - completed
19
20
permissions:
21
contents: read
22
23
jobs:
24
restart:
25
- if: github.repository_owner == 'llvm'
+ if: github.repository_owner == 'llvm' && (github.event.workflow_run.conclusion == 'failure' || github.event.workflow_run.conclusion == 'cancelled')
26
name: "Restart Job"
27
28
statuses: read
0 commit comments