Skip to content

Commit 5a5b253

Browse files
committed
final check
1 parent d8b8371 commit 5a5b253

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

.github/workflows/pr_slow_ci_suggestion.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,19 @@ jobs:
2323
outputs:
2424
jobs: ${{ steps.get_jobs.outputs.jobs_to_run }}
2525
steps:
26+
# This checkout to the main branch
27+
- uses: actions/checkout@v4
28+
with:
29+
fetch-depth: "0"
30+
31+
- name: Write pr_files file
32+
env:
33+
PR_FILES: ${{ needs.get-pr-info.outputs.PR_FILES }}
34+
run: |
35+
cat > pr_files.txt << EOF
36+
$PR_FILES
37+
EOF
38+
2639
- name: Get repository content
2740
id: repo_content
2841
uses: actions/github-script@v6
@@ -56,19 +69,6 @@ jobs:
5669
fs.writeFileSync('tests_models_dir.txt', JSON.stringify(tests_models_dir, null, 2));
5770
fs.writeFileSync('tests_quantization_dir.txt', JSON.stringify(tests_quantization_dir, null, 2));
5871
59-
# This checkout to the main branch
60-
- uses: actions/checkout@v4
61-
with:
62-
fetch-depth: "0"
63-
64-
- name: Write pr_files file
65-
env:
66-
PR_FILES: ${{ needs.get-pr-info.outputs.PR_FILES }}
67-
run: |
68-
cat > pr_files.txt << EOF
69-
$PR_FILES
70-
EOF
71-
7272
- name: Run script to get jobs to run
7373
id: get_jobs
7474
run: |

0 commit comments

Comments
 (0)