We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e984f7 commit c40cc97Copy full SHA for c40cc97
.github/workflows/upstream-sysroot.yml
@@ -53,7 +53,7 @@ jobs:
53
if [ "${{ env.CURRENT_SHA }}" == "${{ env.UPSTREAM_SHA }}" ]; then
54
echo "No changes found - sysroot scripts are up to date!"
55
else
56
- curl -s "https://api.github.com/repos/chromium/chromium/commits?path=build/linux/sysroot_scripts&per_page=20" -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" > commits.json
+ gh api -X GET repos/chromium/chromium/commits -f path="build/linux/sysroot_scripts" -f per_page=20 > commits.json
57
58
COMMITS=$(
59
jq -r --arg base_sha "${{ env.CURRENT_SHA }}" '
0 commit comments