George Krajcsovits
ff724fae81
Merge pull request #19104 from anxkhn/patch-4
...
scrape: fix bucketLimitAppender doc comments
2026-07-07 08:50:34 +02:00
George Krajcsovits
870b8b122c
Merge pull request #19108 from junkerderprovinz/fix/flaky-ooo-compaction-tests
...
tsdb: fix flaky TestQuerierShouldNotFailIfOOOCompactionOccurs* tests
2026-07-07 08:38:56 +02:00
George Krajcsovits
3aba7dca59
Merge pull request #19102 from anxkhn/patch-6
...
discovery/moby: guard nil ContainerSpec for non-container swarm services
2026-07-07 08:28:30 +02:00
junkerderprovinz
59c42d4731
tsdb: fix flaky TestQuerierShouldNotFailIfOOOCompactionOccurs* tests
...
These tests (and their _AppendV2 variants) waited at most one second for
CompactOOOHead to finish after closing the blocking querier. The
compaction goroutine only re-checks for pending readers in 500ms
intervals (WaitForPendingReadersForOOOChunksAtOrBefore) and still has to
garbage collect chunks and truncate the WBL after it notices the close,
so the one second window sits right at the failure boundary and
regularly times out on slow Windows CI runners.
Widen the wait to a minute (require.Eventually returns as soon as the
condition holds, so fast runners lose nothing) and move the require
calls out of the compaction goroutine: require must not be called from
non-test goroutines, and its late FailNow there produced the confusing
secondary "compact ooo head: populate block: context canceled" failures
when the DB was closed during cleanup after the timeout.
Part of #17941
Signed-off-by: junkerderprovinz <jdp@braethoria.com>
2026-07-07 00:58:43 +02:00
Anas Khan
0281a745e5
scrape: fix bucketLimitAppender doc comments
...
The doc comments on bucketLimitAppender and bucketLimitAppenderV2 were
copied from limitAppender and never updated: they claimed to limit the
number of total appended samples, but both types cap the number of
buckets in native histograms, reducing the histogram resolution or
returning errBucketLimit when the limit is exceeded.
The bucketLimitAppenderV2 comment additionally named the wrong type
(bucketLimitAppender), and the adjacent limitAppenderV2 comment named
limitAppender. Correct the identifiers so each doc comment starts with
the type it documents.
Signed-off-by: Anas Khan <83116240+anxkhn@users.noreply.github.com>
2026-07-06 15:09:29 +05:30
Steffen Baarsgaard
9a6814cdfb
promtool: Add --remote-write.path for overriding push metrics url path ( #19086 )
...
buf.build / lint and publish (push) Waiting to run
CI / Go tests (push) Waiting to run
CI / More Go tests (push) Waiting to run
CI / Go tests for 32-bit x86 (push) Waiting to run
CI / List active LTS releases (push) Waiting to run
CI / Go tests for Prometheus upgrades and downgrades (push) Blocked by required conditions
CI / Go tests with previous Go version (push) Waiting to run
CI / UI tests (push) Waiting to run
CI / Go tests on Windows (push) Waiting to run
CI / Mixins tests (push) Waiting to run
CI / Compliance testing (push) Waiting to run
CI / Build Prometheus for common architectures (push) Blocked by required conditions
CI / Build Prometheus for all architectures (push) Blocked by required conditions
CI / Report status of build Prometheus for all architectures (push) Blocked by required conditions
CI / Check generated parser (push) Waiting to run
CI / golangci-lint (push) Waiting to run
CI / fuzzing (push) Waiting to run
CI / codeql (push) Waiting to run
CI / Publish main branch artifacts (push) Blocked by required conditions
CI / Publish release artefacts (push) Blocked by required conditions
CI / Publish UI on npm Registry (push) Blocked by required conditions
govulncheck / Run govulncheck (push) Waiting to run
Scorecards supply-chain security / Scorecards analysis (push) Waiting to run
* feat(promtool): Add flag --remote-write.path=/api/v1/write
* docs(promtool): Generate cli docs for new flag
Signed-off-by: Steffen Baarsgaard <steff.bpoulsen@gmail.com>
Co-authored-by: Varsha U N <varshaun58@gmail.com>
2026-07-06 16:31:44 +10:00
Anas Khan
ad59b2f542
discovery/moby: guard nil ContainerSpec for non-container swarm services
...
Docker Swarm service discovery dereferenced
s.Spec.TaskTemplate.ContainerSpec unconditionally when building the
per-service labels. In the moby SDK, TaskSpec.ContainerSpec is an
optional pointer that is mutually exclusive with PluginSpec and
NetworkAttachmentSpec: it is nil when a service's task runtime is
"plugin" or "attachment". ServiceList returns those services with no
runtime filtering, so a nil ContainerSpec reached the label map and
panicked, aborting the whole services refresh.
Set the container hostname and image labels only when ContainerSpec is
non-nil, mirroring the existing guard in refreshTasks. Add a regression
test with a plugin service (nil ContainerSpec) alongside a normal one.
Signed-off-by: Anas Khan <83116240+anxkhn@users.noreply.github.com>
2026-07-05 10:27:27 +05:30
Julien
d5b0f8775b
Merge pull request #19093 from roidelapluie/roidelapluie/first-over-time-stable
...
buf.build / lint and publish (push) Has been cancelled
CI / Go tests (push) Has been cancelled
CI / More Go tests (push) Has been cancelled
CI / Go tests for 32-bit x86 (push) Has been cancelled
CI / List active LTS releases (push) Has been cancelled
CI / Go tests with previous Go version (push) Has been cancelled
CI / UI tests (push) Has been cancelled
CI / Go tests on Windows (push) Has been cancelled
CI / Mixins tests (push) Has been cancelled
CI / Compliance testing (push) Has been cancelled
CI / Check generated parser (push) Has been cancelled
CI / golangci-lint (push) Has been cancelled
CI / fuzzing (push) Has been cancelled
CI / codeql (push) Has been cancelled
govulncheck / Run govulncheck (push) Has been cancelled
Scorecards supply-chain security / Scorecards analysis (push) Has been cancelled
CI / Go tests for Prometheus upgrades and downgrades (push) Has been cancelled
CI / Build Prometheus for common architectures (push) Has been cancelled
CI / Build Prometheus for all architectures (push) Has been cancelled
CI / Report status of build Prometheus for all architectures (push) Has been cancelled
CI / Publish main branch artifacts (push) Has been cancelled
CI / Publish release artefacts (push) Has been cancelled
CI / Publish UI on npm Registry (push) Has been cancelled
PromQL: Make first_over_time stable
2026-07-03 17:14:51 +02:00
Julien Pivotto
b4741eeb99
promql: promote first_over_time to stable
...
Remove the Experimental flag from first_over_time and move it into the
stable *_over_time function lists in the docs and UI function reference.
Signed-off-by: Julien Pivotto <291750+roidelapluie@users.noreply.github.com>
2026-07-03 16:44:27 +02:00
Bartlomiej Plotka
bae3cf0cc5
Merge pull request #18903 from prometheus/cedwards/rw2-histogram-st-codec
...
remote-write: populate start timestamp for histograms in remote write V2
2026-07-03 14:13:22 +01:00
Carrie Edwards
6fac46efaf
Expand testing for start timestamps
...
Signed-off-by: Carrie Edwards <edwrdscarrie@gmail.com>
2026-07-02 09:39:06 -07:00
Julien
06acd07312
Merge pull request #19083 from roidelapluie/roidelapluie/reposync-no-delete-branch
...
buf.build / lint and publish (push) Waiting to run
CI / Go tests (push) Waiting to run
CI / More Go tests (push) Waiting to run
CI / Go tests for 32-bit x86 (push) Waiting to run
CI / List active LTS releases (push) Waiting to run
CI / Go tests for Prometheus upgrades and downgrades (push) Blocked by required conditions
CI / Go tests with previous Go version (push) Waiting to run
CI / UI tests (push) Waiting to run
CI / Go tests on Windows (push) Waiting to run
CI / Mixins tests (push) Waiting to run
CI / Compliance testing (push) Waiting to run
CI / Build Prometheus for common architectures (push) Blocked by required conditions
CI / Build Prometheus for all architectures (push) Blocked by required conditions
CI / Report status of build Prometheus for all architectures (push) Blocked by required conditions
CI / Check generated parser (push) Waiting to run
CI / golangci-lint (push) Waiting to run
CI / fuzzing (push) Waiting to run
CI / codeql (push) Waiting to run
CI / Publish main branch artifacts (push) Blocked by required conditions
CI / Publish release artefacts (push) Blocked by required conditions
CI / Publish UI on npm Registry (push) Blocked by required conditions
govulncheck / Run govulncheck (push) Waiting to run
Scorecards supply-chain security / Scorecards analysis (push) Waiting to run
ci: don't delete repo-sync branch when force-updating open PR
2026-07-02 17:59:31 +02:00
Julien Pivotto
10bd82a8ea
ci: don't delete repo-sync branch when force-updating open PR
...
push_branch unconditionally deleted the remote branch before pushing.
On the force-update path for an existing bot-only PR, deleting the
branch closes the PR on GitHub, so the PR was lost instead of updated.
Force-push in place on that path and keep the delete only for the
fresh-PR path.
Signed-off-by: Julien Pivotto <291750+roidelapluie@users.noreply.github.com>
2026-07-02 17:50:09 +02:00
Julien
6010d1db3c
Merge pull request #19078 from roidelapluie/roidelapluie/repo-sync-force-update
...
ci: force-update stale repo-sync PRs when content changes
2026-07-02 17:43:30 +02:00
George Krajcsovits
68123cb96e
Merge pull request #18557 from vamsi-01/promql/delta-start-time-overlap-warning
...
promql: detect and warn on overlapping start timestamps
2026-07-02 15:53:57 +02:00
Julien Pivotto
5626eed5b4
ci: force-update stale repo-sync PRs when content changes
...
When a repo_sync PR is already open, the sync script skipped the repo
entirely, so the PR went stale whenever the source files changed again.
Now, if the open PR carries only the single bot commit, the branch is
rebuilt from the target default branch (staying current with the base)
and force-pushed, but only when the synced files actually differ from
the PR branch. PRs that a maintainer has committed to (more than one
commit) are left untouched.
Signed-off-by: Julien Pivotto <291750+roidelapluie@users.noreply.github.com>
2026-07-02 15:13:41 +02:00
Julien
406a0e5fe0
ci: fix repo sync writing dependabot.yml to wrong path ( #19077 )
...
The scripts/dependabot.yml -> .github/dependabot.yml remapping was present
in the detection loop but missing from the copy loop, so downstream repos
received a stray scripts/dependabot.yml that Dependabot never reads while
.github/dependabot.yml was never created.
Signed-off-by: Julien Pivotto <291750+roidelapluie@users.noreply.github.com>
2026-07-02 14:44:10 +02:00
Julien
a0cf2ab586
Merge pull request #19075 from roidelapluie/roidelapluie/reposync-no-sync-fix
...
ci: fix no_prometheus_repo_sync opt-out in repo sync
2026-07-02 13:58:13 +02:00
Julien Pivotto
f8a9929f31
ci: fix no_prometheus_repo_sync opt-out in repo sync
...
check_no_sync received the fetched file contents but grepped them as a
filename, so the marker was never detected and repos opting out via
no_prometheus_repo_sync were synced anyway. Feed the contents on stdin
with a here-string, matching check_license, and log the filename instead
of the whole file body.
Signed-off-by: Julien Pivotto <291750+roidelapluie@users.noreply.github.com>
2026-07-02 13:29:07 +02:00
Julien
c8739b0766
Merge pull request #19074 from roidelapluie/roidelapluie/lts-split
...
ci: run version upgrade test as a per-LTS matrix
2026-07-02 12:47:27 +02:00
Julien
0c46ec8e45
Merge pull request #19061 from prometheus/deps-update/go-openapi
...
fix(deps): update module github.com/go-openapi/strfmt to v0.26.4
2026-07-02 12:38:18 +02:00
Julien
8915a0e73c
Merge pull request #19063 from prometheus/deps-update/github.com-pb33f-libopenapi-validator-0.x
...
fix(deps): update module github.com/pb33f/libopenapi-validator to v0.13.13
2026-07-02 12:37:50 +02:00
George Krajcsovits
bfc70fef19
Merge pull request #19068 from prometheus/krajo/merge-release-3.13-to-main
...
merge release 3.13 to main
2026-07-02 12:36:13 +02:00
Julien Pivotto
827d0f9ad3
ci: run version upgrade test as a per-LTS matrix
...
Fan out the upgrade/downgrade test over each active LTS release so the
matrix jobs run in parallel and a single release failure does not mask
the others. A new list_lts_releases job reads the active LTS versions
from prometheus.io/download.json and feeds them to the matrix.
Add a --test.lts-version flag so TestVersionUpgrade can be restricted to
a single LTS release; when empty, all active LTS releases are tested.
Signed-off-by: Julien Pivotto <291750+roidelapluie@users.noreply.github.com>
2026-07-02 12:28:12 +02:00
Jonas L.
19273691bb
chore: update hetzner discovery maintainers info ( #19071 )
...
buf.build / lint and publish (push) Waiting to run
CI / Go tests (push) Waiting to run
CI / More Go tests (push) Waiting to run
CI / Go tests for 32-bit x86 (push) Waiting to run
CI / Go tests for Prometheus upgrades and downgrades (push) Waiting to run
CI / Go tests with previous Go version (push) Waiting to run
CI / UI tests (push) Waiting to run
CI / Go tests on Windows (push) Waiting to run
CI / Mixins tests (push) Waiting to run
CI / Compliance testing (push) Waiting to run
CI / Build Prometheus for common architectures (push) Blocked by required conditions
CI / Build Prometheus for all architectures (push) Blocked by required conditions
CI / Report status of build Prometheus for all architectures (push) Blocked by required conditions
CI / Check generated parser (push) Waiting to run
CI / golangci-lint (push) Waiting to run
CI / fuzzing (push) Waiting to run
CI / codeql (push) Waiting to run
CI / Publish main branch artifacts (push) Blocked by required conditions
CI / Publish release artefacts (push) Blocked by required conditions
CI / Publish UI on npm Registry (push) Blocked by required conditions
govulncheck / Run govulncheck (push) Waiting to run
Scorecards supply-chain security / Scorecards analysis (push) Waiting to run
Use the recommended format for maintainer entries. Add the missing names and emails.
Closes #18704
Signed-off-by: Jonas Lammler <jonas.lammler@hetzner-cloud.de>
2026-07-02 11:29:37 +02:00
Bryan Boreham
3a5a2c0021
Merge pull request #18241 from mmorel-35/gocritic-stringsCompare
...
buf.build / lint and publish (push) Waiting to run
CI / Go tests (push) Waiting to run
CI / More Go tests (push) Waiting to run
CI / Go tests for 32-bit x86 (push) Waiting to run
CI / Go tests for Prometheus upgrades and downgrades (push) Waiting to run
CI / Go tests with previous Go version (push) Waiting to run
CI / UI tests (push) Waiting to run
CI / Go tests on Windows (push) Waiting to run
CI / Mixins tests (push) Waiting to run
CI / Compliance testing (push) Waiting to run
CI / Build Prometheus for common architectures (push) Blocked by required conditions
CI / Build Prometheus for all architectures (push) Blocked by required conditions
CI / Report status of build Prometheus for all architectures (push) Blocked by required conditions
CI / Check generated parser (push) Waiting to run
CI / golangci-lint (push) Waiting to run
CI / fuzzing (push) Waiting to run
CI / codeql (push) Waiting to run
CI / Publish main branch artifacts (push) Blocked by required conditions
CI / Publish release artefacts (push) Blocked by required conditions
CI / Publish UI on npm Registry (push) Blocked by required conditions
govulncheck / Run govulncheck (push) Waiting to run
Scorecards supply-chain security / Scorecards analysis (push) Waiting to run
Push README to Docker Hub / Push README to Docker Hub (push) Has been cancelled
Push README to Docker Hub / Push README to quay.io (push) Has been cancelled
chore: fix stringsCompare issues from gocritic
2026-07-01 17:32:52 +01:00
renovate[bot]
02e067c61e
chore(deps): update typescript-eslint monorepo to v8.62.1 ( #18754 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-07-01 17:48:03 +02:00
György Krajcsovits
39f54360ee
Merge remote-tracking branch 'origin/release-3.13' into krajo/merge-release-3.13-to-main
2026-07-01 16:18:37 +02:00
renovate[bot]
77bb721dca
fix(deps): update module github.com/go-openapi/strfmt to v0.26.4
2026-07-01 13:55:54 +00:00
renovate[bot]
effd130b71
fix(deps): update module github.com/prometheus/exporter-toolkit to v0.17.1 ( #19065 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-07-01 15:52:53 +02:00
renovate[bot]
2f43e049c5
chore(deps): update golangci/golangci-lint-action action to v9.3.0 ( #19064 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-07-01 15:24:13 +02:00
renovate[bot]
557a36f638
fix(deps): update module github.com/pb33f/libopenapi-validator to v0.13.13
2026-07-01 12:51:38 +00:00
Ben Kochie
3e6e5c8c84
Sync dependabot configs ( #19051 )
...
Add `.github/dependabot.yml` to the repo sync script.
* Sync is optional.
* Add feature to skip files that contain the string `no_prometheus_repo_sync`.
* Add generic dependabot config for Go and GitHub Actions ecosystems.
Signed-off-by: SuperQ <superq@gmail.com>
2026-07-01 14:50:26 +02:00
renovate[bot]
2736cd9b3f
chore(deps): update actions/cache action to v6 ( #19055 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-07-01 14:28:22 +02:00
renovate[bot]
07fc98e525
chore(deps): update prometheus/promci-setup action to v0.2.1 ( #19058 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-07-01 14:28:09 +02:00
renovate[bot]
25cf60018f
chore(deps): update prometheus/promci action to v0.8.5 ( #19057 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-07-01 14:27:58 +02:00
renovate[bot]
b27435d356
chore(deps): update actions/checkout action to v7 ( #19056 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-07-01 14:27:44 +02:00
renovate[bot]
954cb0b5cc
chore(deps): update actions/setup-go action to v6.5.0 ( #19054 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-07-01 14:04:40 +02:00
renovate[bot]
e8289cb64d
chore(deps): update actions/cache action to v5.1.0 ( #19053 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-07-01 14:04:13 +02:00
Matthieu MOREL
d6ad2fe894
chore: fix stringsCompare issues from gocritic
...
Signed-off-by: Matthieu MOREL <matthieu.morel35@gmail.com>
2026-07-01 11:47:56 +00:00
renovate[bot]
1718bc82d5
chore(deps): update dependency http-proxy-middleware to v3.0.7 [security] ( #18970 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-07-01 13:42:20 +02:00
Bryan Boreham
bc962a2c49
Merge pull request #18417 from mmorel-35/revive-enable-default-rules
...
chore: fix unnecessary-format issues from revive
2026-07-01 12:40:36 +01:00
George Krajcsovits
40af9c2cdc
Merge pull request #19047 from prometheus/krajo/prep-release-3.13
...
CI / Go tests (push) Has been cancelled
CI / More Go tests (push) Has been cancelled
CI / Go tests for 32-bit x86 (push) Has been cancelled
CI / Go tests for Prometheus upgrades and downgrades (push) Has been cancelled
CI / Go tests with previous Go version (push) Has been cancelled
CI / UI tests (push) Has been cancelled
CI / Go tests on Windows (push) Has been cancelled
CI / Mixins tests (push) Has been cancelled
CI / Compliance testing (push) Has been cancelled
CI / Check generated parser (push) Has been cancelled
CI / golangci-lint (push) Has been cancelled
CI / fuzzing (push) Has been cancelled
CI / codeql (push) Has been cancelled
CI / Build Prometheus for common architectures (push) Has been cancelled
CI / Build Prometheus for all architectures (push) Has been cancelled
CI / Report status of build Prometheus for all architectures (push) Has been cancelled
CI / Publish main branch artifacts (push) Has been cancelled
CI / Publish release artefacts (push) Has been cancelled
CI / Publish UI on npm Registry (push) Has been cancelled
chore: prepare release 3.13
2026-07-01 12:43:14 +02:00
Julien
1f98467497
Merge pull request #19040 from roidelapluie/roidelapluie/mad-over-time-nan
...
buf.build / lint and publish (push) Waiting to run
CI / Go tests (push) Waiting to run
CI / More Go tests (push) Waiting to run
CI / Go tests for 32-bit x86 (push) Waiting to run
CI / Go tests for Prometheus upgrades and downgrades (push) Waiting to run
CI / Go tests with previous Go version (push) Waiting to run
CI / UI tests (push) Waiting to run
CI / Go tests on Windows (push) Waiting to run
CI / Mixins tests (push) Waiting to run
CI / Compliance testing (push) Waiting to run
CI / Build Prometheus for common architectures (push) Blocked by required conditions
CI / Build Prometheus for all architectures (push) Blocked by required conditions
CI / Report status of build Prometheus for all architectures (push) Blocked by required conditions
CI / Check generated parser (push) Waiting to run
CI / golangci-lint (push) Waiting to run
CI / fuzzing (push) Waiting to run
CI / codeql (push) Waiting to run
CI / Publish main branch artifacts (push) Blocked by required conditions
CI / Publish release artefacts (push) Blocked by required conditions
CI / Publish UI on npm Registry (push) Blocked by required conditions
govulncheck / Run govulncheck (push) Waiting to run
Scorecards supply-chain security / Scorecards analysis (push) Waiting to run
promql: make mad_over_time propagate NaN and reuse its scratch slice
2026-07-01 11:06:17 +02:00
Julius Volz
6f84549425
Merge pull request #18706 from akshajrawat/ui/rule-health-copy-button
...
web/ui: add copy button for rule names in rules and alerts page
2026-07-01 09:44:25 +02:00
George Krajcsovits
3c5959e6d4
Merge pull request #19048 from prometheus/krajo/fix-codeowners
...
chore: remove Beorn from codeowners
2026-07-01 09:31:12 +02:00
György Krajcsovits
68bab7d37a
chore: remove Beorn from codeowners
...
CODEOWNERS has an error, because Beorn no longer has write access after
retiring from the project.
Signed-off-by: György Krajcsovits <gyorgy.krajcsovits@grafana.com>
2026-07-01 09:14:44 +02:00
Matthieu MOREL
e098647095
chore: fix unnecessary-format issues from revive
...
Signed-off-by: Matthieu MOREL <matthieu.morel35@gmail.com>
2026-07-01 07:08:20 +00:00
George Krajcsovits
630567d042
Merge pull request #19042 from prometheus/krajo/add-promql-maintainer
...
chore: propose Vilius Pranckaitis as PromQL code owner/maintainer
2026-07-01 08:50:30 +02:00
Bartlomiej Plotka
7070104b34
Merge pull request #18470 from GiedriusS/propose_stuffing
...
buf.build / lint and publish (push) Waiting to run
CI / Go tests (push) Waiting to run
CI / More Go tests (push) Waiting to run
CI / Go tests for 32-bit x86 (push) Waiting to run
CI / Go tests for Prometheus upgrades and downgrades (push) Waiting to run
CI / Go tests with previous Go version (push) Waiting to run
CI / UI tests (push) Waiting to run
CI / Go tests on Windows (push) Waiting to run
CI / Mixins tests (push) Waiting to run
CI / Compliance testing (push) Waiting to run
CI / Build Prometheus for common architectures (push) Blocked by required conditions
CI / Build Prometheus for all architectures (push) Blocked by required conditions
CI / Report status of build Prometheus for all architectures (push) Blocked by required conditions
CI / Check generated parser (push) Waiting to run
CI / golangci-lint (push) Waiting to run
CI / fuzzing (push) Waiting to run
CI / codeql (push) Waiting to run
CI / Publish main branch artifacts (push) Blocked by required conditions
CI / Publish release artefacts (push) Blocked by required conditions
CI / Publish UI on npm Registry (push) Blocked by required conditions
govulncheck / Run govulncheck (push) Waiting to run
Scorecards supply-chain security / Scorecards analysis (push) Waiting to run
storage/remote: disable immediate flushing
2026-06-30 22:03:13 +01:00