-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
92400c8
commit 033abe1
Showing
1 changed file
with
8 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,17 +30,18 @@ jobs: | |
- name: Commit | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.PAT }} | ||
GIT_AUTHOR_NAME: "GitHub Actions Bot" | ||
GIT_AUTHOR_EMAIL: "<[email protected]>" | ||
run: | | ||
git config user.name "GitHub Actions Bot" | ||
git config user.email "<[email protected]>" | ||
git commit -m "chore(ci): updated test file runtime file" .ci/runtimes.json | ||
- name: Create PR message | ||
run: | | ||
FIRST_LINE=$(git diff-tree -r -c -M -C --no-commit-id HEAD | head -n 1) | ||
BLOB_HASH=$(echo $FIRST_LINE | awk '{print $4}') | ||
SIZE=$(echo $BLOB_HASH | git cat-file --batch-check | grep "blob" | awk '{ print $3 }') | ||
PRINTABLE_SIZE=$(numfmt --to=iec --suffix=B --format="%.1f" "$SIZE") | ||
git push -f origin HEAD:chore/update-runtimes | ||
cat > /tmp/commit-message <<EOD | ||
This PR updates the test runtimes file to incorporate latest statistics for better scheduling. | ||
|
@@ -56,6 +57,10 @@ jobs: | |
git branch -d chore/update-runtimes | ||
\`\`\` | ||
EOD | ||
- run: git push origin :chore/update-runtimes | ||
- run: git push -f origin HEAD:chore/update-runtimes | ||
- run: | | ||
gh pr create --title "chore(ci): update test runtimes" \ | ||
--body-file /tmp/commit-message | ||
--base master \ | ||
|