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 2c66429 commit 09cd898Copy full SHA for 09cd898
.github/workflows/main.yml
@@ -1,8 +1,6 @@
1
name: Prebuild DevX closures
2
on:
3
push:
4
- branches:
5
- - main
6
7
workflow_dispatch:
8
@@ -34,7 +32,8 @@ jobs:
34
32
id: set-matrix
35
33
run: |
36
# Group the output by platform.
37
- CHECK_RUNS=$(gh api "repos/$GITHUB_REPOSITORY/commits/$GITHUB_SHA/check-runs" --paginate)
+ jq --version
+ CHECK_RUNS=$(gh api "repos/$GITHUB_REPOSITORY/commits/main/check-runs" --paginate)
38
echo "checks..."
39
FILTERED=$(jq -c -r '.check_runs[] | select(.name | endswith("-env")) | { "config": .name, "build_path": .output.text }' <<< "$CHECK_RUNS")
40
echo "filtered..."
0 commit comments