Skip to content

Commit 45dd5a7

Browse files
committed
release
1 parent d322ff8 commit 45dd5a7

14 files changed

+14
-14
lines changed

.github/workflows/close_inactive.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
close-issues:
99
if: github.event.pull_request.draft == false && github.base_ref == 'main' && github.event.pull_request.base.repo.full_name == 'hpcaitech/ColossalAI'
10-
runs-on: [self-hosted, ubuntu-latest]-latest
10+
runs-on: [self-hosted, ubuntu-latest]
1111
permissions:
1212
issues: write
1313
pull-requests: write

.github/workflows/compatiblity_test_on_dispatch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515
jobs:
1616
matrix_preparation:
1717
name: Prepare Container List
18-
runs-on: [self-hosted, ubuntu-latest]-latest
18+
runs-on: [self-hosted, ubuntu-latest]
1919
outputs:
2020
matrix: ${{ steps.set-matrix.outputs.matrix }}
2121
steps:

.github/workflows/compatiblity_test_on_pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
matrix_preparation:
1111
name: Prepare Container List
12-
runs-on: [self-hosted, ubuntu-latest]-latest
12+
runs-on: [self-hosted, ubuntu-latest]
1313
outputs:
1414
matrix: ${{ steps.set-matrix.outputs.matrix }}
1515
concurrency:

.github/workflows/compatiblity_test_on_schedule.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
matrix_preparation:
1111
name: Prepare Container List
12-
runs-on: [self-hosted, ubuntu-latest]-latest
12+
runs-on: [self-hosted, ubuntu-latest]
1313
outputs:
1414
matrix: ${{ steps.set-matrix.outputs.matrix }}
1515
steps:

.github/workflows/doc_build_on_schedule_after_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
build-doc:
1212
name: Trigger Documentation Build Workflow
1313
if: github.repository == 'hpcaitech/ColossalAI'
14-
runs-on: [self-hosted, ubuntu-latest]-latest
14+
runs-on: [self-hosted, ubuntu-latest]
1515
steps:
1616
- name: trigger workflow in ColossalAI-Documentation
1717
run: |

.github/workflows/doc_check_on_pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
if: |
3434
github.event.pull_request.draft == false &&
3535
github.event.pull_request.base.repo.full_name == 'hpcaitech/ColossalAI'
36-
runs-on: [self-hosted, ubuntu-latest]-latest
36+
runs-on: [self-hosted, ubuntu-latest]
3737
concurrency:
3838
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-check-doc
3939
cancel-in-progress: true

.github/workflows/doc_test_on_pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
if: |
1616
github.event.pull_request.draft == false &&
1717
github.event.pull_request.base.repo.full_name == 'hpcaitech/ColossalAI' && github.event_name == 'pull_request'
18-
runs-on: [self-hosted, ubuntu-latest]-latest
18+
runs-on: [self-hosted, ubuntu-latest]
1919
outputs:
2020
any_changed: ${{ steps.changed-files.outputs.any_changed }}
2121
changed_files: ${{ steps.changed-files.outputs.all_changed_files }}

.github/workflows/draft_github_release_post_after_merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
release:
1313
name: Draft Release Post
1414
if: ( github.event_name == 'workflow_dispatch' || github.event.pull_request.merged == true ) && github.repository == 'hpcaitech/ColossalAI'
15-
runs-on: [self-hosted, ubuntu-latest]-latest
15+
runs-on: [self-hosted, ubuntu-latest]
1616
steps:
1717
- uses: actions/checkout@v2
1818
with:

.github/workflows/example_check_on_dispatch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
github.base_ref == 'main' &&
1515
github.event.pull_request.base.repo.full_name == 'hpcaitech/ColossalAI'
1616
name: Check the examples user want
17-
runs-on: [self-hosted, ubuntu-latest]-latest
17+
runs-on: [self-hosted, ubuntu-latest]
1818
outputs:
1919
matrix: ${{ steps.set-matrix.outputs.matrix }}
2020
steps:

.github/workflows/example_check_on_pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
if: |
1818
github.event.pull_request.draft == false &&
1919
github.event.pull_request.base.repo.full_name == 'hpcaitech/ColossalAI' && github.event_name == 'pull_request'
20-
runs-on: [self-hosted, ubuntu-latest]-latest
20+
runs-on: [self-hosted, ubuntu-latest]
2121
outputs:
2222
matrix: ${{ steps.setup-matrix.outputs.matrix }}
2323
anyChanged: ${{ steps.setup-matrix.outputs.anyChanged }}

0 commit comments

Comments
 (0)