Skip to content

Commit 55e0573

Browse files
authored
slice schedule (#74419)
1 parent 254f873 commit 55e0573

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

.github/workflows/Slice-baseline.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
name: Slice-baseline
1+
name: Slice-baseline-paddle
22

33
on:
44
workflow_dispatch:
55
schedule:
6-
- cron: '0 20 * * *'
6+
- cron: '0 20 * * 0'
77

88
permissions: read-all
99

.github/workflows/Slice-torch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Slice-baseline
1+
name: Slice-baseline-torch
22

33
on:
44
workflow_dispatch:

.github/workflows/_Slice.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,17 @@ defaults:
3737
shell: bash
3838

3939
jobs:
40+
check-bypass:
41+
name: Check bypass
42+
uses: ./.github/workflows/check-bypass.yml
43+
with:
44+
workflow-name: "slice"
45+
secrets:
46+
github-token: ${{ secrets.GITHUB_TOKEN }}
47+
4048
slice:
4149
name: Slice test
42-
if: ${{ inputs.can-skip != 'true' }}
50+
if: ${{ inputs.can-skip != 'true' && needs.check-bypass.outputs.can-skip != 'true' }}
4351
runs-on:
4452
group: slice
4553
steps:

0 commit comments

Comments
 (0)