Skip to content

Commit e931a24

Browse files
committed
Replace remaining uses of sync.py
1 parent 8bfaf96 commit e931a24

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

.github/workflows/rebuild.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,7 @@ jobs:
8787
8888
- name: Generate workflows
8989
working-directory: pr-checks
90-
run: |
91-
python -m pip install --upgrade pip
92-
pip install ruamel.yaml==0.17.31
93-
python3 sync.py
90+
run: ./sync.sh
9491

9592
- name: "Merge in progress: Finish merge and push"
9693
if: steps.merge.outputs.merge-in-progress == 'true'

.github/workflows/script/verify-pr-checks.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ if [ ! -z "$(git status --porcelain)" ]; then
1919
# If we get a fail here then the PR needs attention
2020
git diff
2121
git status
22-
>&2 echo "Failed: PR checks are not up to date. Run 'cd pr-checks && python3 sync.py' to update"
22+
>&2 echo "Failed: PR checks are not up to date. Run 'cd pr-checks && ./sync.sh' to update"
2323

2424
echo "### Generated workflows diff" >> $GITHUB_STEP_SUMMARY
2525
echo "" >> $GITHUB_STEP_SUMMARY

0 commit comments

Comments
 (0)