Skip to content

Commit 85567c8

Browse files
authored
build: Use Accept:application/vnd.github.VERSION.sha to get the latest sha of sentry-api-schema repo (#9106)
* build: Use Accept:application/vnd.github.VERSION.sha to get the latest sha of sentry-api-schema repo * Add some bash flags * print some helpful statement along the way
1 parent 5738d6e commit 85567c8

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/bump-api-schema-sha.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,18 @@ jobs:
2020
# kick off for the PR we're about to create.
2121
GITHUB_TOKEN: ${{ secrets.GH_RELEASE_PAT }}
2222
run: |
23+
set -euo pipefail
24+
2325
git config user.email "[email protected]"
2426
git config user.name "openapi-getsentry-bot"
2527
2628
filepath="src/build/resolveOpenAPI.ts"
27-
sha="$(curl -sSL 'https://api.github.com/repos/getsentry/sentry-api-schema/commits/main' | awk 'BEGIN { RS=",|:{\n"; FS="\""; } $2 == "sha" { print $4 }')"
29+
30+
sha="$(curl -sSl -H 'Accept: application/vnd.github.VERSION.sha' 'https://api.github.com/repos/getsentry/sentry-api-schema/commits/main')"
31+
echo "Latest commit to 'getsentry/sentry-api-schema' is $sha"
32+
2833
sed -i -e "s|^const SENTRY_API_SCHEMA_SHA =.*$|const SENTRY_API_SCHEMA_SHA = '$sha';|g" "$filepath"
34+
echo "Updated $filepath"
2935
3036
branch="bot/bump-api-schema-to-${sha:0:8}"
3137
git checkout -b "$branch"

0 commit comments

Comments
 (0)