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 45c19bd commit 95ba237Copy full SHA for 95ba237
1 file changed
.github/workflows/rc-release.yml
@@ -25,6 +25,8 @@ jobs:
25
rc-release:
26
if: github.event.action == 'labeled' && github.event.label.name == 'trigger:rc-release'
27
runs-on: ubuntu-latest
28
+ # Builds typically finish in ~3 min; cap well above that to fail fast on a hang.
29
+ timeout-minutes: 10
30
env:
31
GH_TOKEN: ${{ github.token }}
32
PR_NUMBER: ${{ github.event.pull_request.number }}
@@ -87,6 +89,8 @@ jobs:
87
89
cleanup:
88
90
if: github.event.action == 'closed'
91
92
+ # Just a few gh API calls; should complete in seconds.
93
+ timeout-minutes: 5
94
95
96
0 commit comments