Skip to content

Commit ce70ed4

Browse files
authored
Add CI workflow dispatch and timeouts (#343)
* Add workflow dispatch to other CI workflows * Add additional timeouts to CI
1 parent 9c61064 commit ce70ed4

File tree

7 files changed

+10
-0
lines changed

7 files changed

+10
-0
lines changed

.github/workflows/check-release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
branches: ["main"]
55
pull_request:
66
branches: ["*"]
7+
workflow_dispatch:
78

89
permissions:
910
contents: read
@@ -15,6 +16,7 @@ concurrency:
1516
jobs:
1617
check_release:
1718
runs-on: ubuntu-22.04
19+
timeout-minutes: 15
1820
strategy:
1921
matrix:
2022
group: [check_release, link_check]

.github/workflows/docs.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
branches: '*'
55
pull_request:
66
branches: '*'
7+
workflow_dispatch:
78

89
concurrency:
910
group: ${{ github.workflow }}-${{ github.ref }}
@@ -15,6 +16,7 @@ env:
1516
jobs:
1617
build:
1718
runs-on: ubuntu-22.04
19+
timeout-minutes: 15
1820
strategy:
1921
fail-fast: false
2022
steps:

.github/workflows/downstream.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
branches: "*"
66
pull_request:
77
branches: "*"
8+
workflow_dispatch:
89

910
concurrency:
1011
group: ${{ github.workflow }}-${{ github.ref }}

.github/workflows/enforce-label.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
jobs:
77
enforce-label:
88
runs-on: ubuntu-22.04
9+
timeout-minutes: 5
910
steps:
1011
- name: enforce-triage-label
1112
uses: jupyterlab/maintainer-tools/.github/actions/enforce-label@v1

.github/workflows/js.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
branches: '*'
66
pull_request:
77
branches: '*'
8+
workflow_dispatch:
89

910
concurrency:
1011
group: ${{ github.workflow }}-${{ github.ref }}
@@ -16,6 +17,7 @@ env:
1617
jobs:
1718
build:
1819
runs-on: ${{ matrix.os }}
20+
timeout-minutes: 30
1921
strategy:
2022
fail-fast: false
2123
matrix:

.github/workflows/playwright.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ concurrency:
1414
jobs:
1515
build:
1616
runs-on: ${{ matrix.os }}
17+
timeout-minutes: 30
1718
strategy:
1819
fail-fast: false
1920
matrix:

.github/workflows/pythonpackage.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
branches:
66
- main
77
pull_request:
8+
workflow_dispatch:
89

910
concurrency:
1011
group: ${{ github.workflow }}-${{ github.ref }}

0 commit comments

Comments
 (0)