forked from WordPress/wordpress-develop
-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (48 loc) · 1.58 KB
/
failed-workflow.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
##
# Performs follow-up tasks when a workflow fails or is cancelled.
##
name: Failed Workflow
on:
workflow_dispatch:
inputs:
run_id:
description: 'ID of the GitHub Action workflow run to rerun'
required: true
type: 'string'
# Disable permissions for all available scopes by default.
# Any needed permissions should be configured at the job level.
permissions: {}
jobs:
# Attempts to rerun a workflow.
#
# Performs the following steps:
# - Retrieves the workflow run that dispatched this workflow.
# - Restarts all failed jobs when the workflow fails or is cancelled for the first time.
failed-workflow:
name: Rerun a workflow
runs-on: ubuntu-latest
permissions:
actions: write
timeout-minutes: 30
steps:
- name: Rerun a workflow
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
with:
retries: 15
retry-exempt-status-codes: 418
script: |
const workflow_run = await github.rest.actions.getWorkflowRun({
owner: context.repo.owner,
repo: context.repo.repo,
run_id: ${{ inputs.run_id }},
});
// Only rerun after the first run attempt.
if ( workflow_run.data.run_attempt > 1 ) {
return;
}
const rerun = await github.rest.actions.reRunWorkflowFailedJobs({
owner: context.repo.owner,
repo: context.repo.repo,
run_id: ${{ inputs.run_id }},
enable_debug_logging: true
});