diff options
author | EuAndreh <eu@euandre.org> | 2021-06-19 10:40:41 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-06-19 10:40:41 -0300 |
commit | 3cd0c4f1f3798f5cf4b67ba1f6f36879bd6a033f (patch) | |
tree | 23ae874314b2e9c0bdefb0c092349ff0bd8fd500 /aux/ci/report.sh | |
parent | TODOs.md: Add #task-eb65cbf1-bff9-be13-f185-3ea53333aa6f (diff) | |
download | git-permalink-3cd0c4f1f3798f5cf4b67ba1f6f36879bd6a033f.tar.gz git-permalink-3cd0c4f1f3798f5cf4b67ba1f6f36879bd6a033f.tar.xz |
aux/ci/report.sh: Fetch only CI-related notes
Diffstat (limited to 'aux/ci/report.sh')
-rwxr-xr-x | aux/ci/report.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/aux/ci/report.sh b/aux/ci/report.sh index 2b40f3e..e71e1ac 100755 --- a/aux/ci/report.sh +++ b/aux/ci/report.sh @@ -12,7 +12,10 @@ mkdir -p public/ci-logs public/ci-data OUT="$(mktemp)" chmod 644 "$OUT" -git fetch origin refs/notes/*:refs/notes/* ||: +git fetch origin refs/notes/ci-data:refs/notes/ci-data ||: & +git fetch origin refs/notes/ci-logs:refs/notes/ci-logs ||: & +git fetch origin refs/notes/commits:refs/notes/commits ||: & +wait for c in $(git notes list | cut -d\ -f2); do DATA="$(git notes --ref=refs/notes/ci-data show "$c")" |