Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable workflow dispatch on all workflows #5016

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/amd-mi200.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: amd-mi200

on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cpu-inference.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: cpu-inference

on:
workflow_dispatch:
pull_request:
paths:
- '.github/workflows/cpu-inference.yml'
Expand All @@ -10,7 +11,6 @@ on:
- '!deepspeed/inference/v2/**' # exclude v2 dir
- 'tests/unit/inference/**'
- '!tests/unit/inference/v2/**' # exclude v2 tests dir
workflow_dispatch:
merge_group:
branches: [ master ]
schedule:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/formatting.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Formatting

on:
workflow_dispatch:
pull_request:
branches:
'**'
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/nv-accelerate-v100.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: nv-accelerate-v100

on:
workflow_dispatch:
pull_request:
paths-ignore:
- 'docs/**'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nv-h100.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: nv-h100

on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/nv-inference.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: nv-inference

on:
workflow_dispatch:
pull_request:
paths:
- '.github/workflows/nv-inference.yml'
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/nv-lightning-v100.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: nv-lightning-v100

on:
workflow_dispatch:
pull_request:
paths-ignore:
- 'docs/**'
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/nv-megatron.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: nv-megatron

on:
workflow_dispatch:
pull_request:
paths-ignore:
- 'docs/**'
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/nv-mii.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: nv-mii

on:
workflow_dispatch:
pull_request:
paths:
- '.github/workflows/nv-mii.yml'
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/nv-pre-compile-ops.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: nv-pre-compile-ops

on:
workflow_dispatch:
pull_request:
branches:
'**'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nv-sd.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: nv-sd

on:
workflow_dispatch:
schedule:
- cron: "0 0 * * 0"
workflow_dispatch:
pull_request:
paths:
- "deepspeed/ops/transformer/inference/diffusers_**"
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/nv-torch-latest-cpu.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: nv-torch-latest-cpu

on:
workflow_dispatch:
pull_request:
paths-ignore:
- 'docs/**'
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/nv-torch-latest-v100.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: nv-torch-latest-v100

on:
workflow_dispatch:
pull_request:
paths-ignore:
- 'docs/**'
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/nv-torch-nightly-v100.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: nv-torch-nightly-v100

on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nv-torch110-p40.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: nv-torch110-p40

on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nv-torch110-v100.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: nv-torch110-v100

on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: python

on:
workflow_dispatch:
pull_request:
branches:
'**'
Expand Down
Loading