Commit Graph

7 Commits

Author SHA1 Message Date
Ryan Omasta
ebe9db6538 ci/github-script/labels: keep "needs reviewer" if only automated reviews
(cherry picked from commit 32373aff1c)
2025-09-09 07:49:29 +00:00
Wolfgang Walther
f814e824f8 ci/github-script/labels: auto close package request issues
This allows the labels workflow to support issue management in two ways:
- New package request can potentially created with a `4.workflow:
auto-close` label immediately and be closed automatically this way.
- Existing package requests can be bulk-closed by adding this label.
This has the advantage of posting the explanatory comment at the same
time, which is not possible with regular bulk operations.

(cherry picked from commit b5dee53399)
2025-08-29 19:31:18 +00:00
Wolfgang Walther
27c0126b67 ci: apply unsafe fixes with biome
(cherry picked from commit 23b82b3228)
2025-08-20 16:33:44 +02:00
Wolfgang Walther
e6d63110df ci: apply safe formatting with biome
(cherry picked from commit 1fa55d3900)
2025-08-20 16:33:41 +02:00
Wolfgang Walther
58846dd9b2 ci/github-script/labels: limit cutoff to max 1 day
It has only happened once, but the GitHub API suddenly returned a
workflow run from a few weeks back. This lead to quickly hitting the
rate limit for search requests.

Prevent this from happening by going back a day max for the "recently
updated" case. After roughly a day, every PR will have been touched by
the regular batch processing anyway.

Also save a few API requests, by taking bigger chunks of the search
result.

(cherry picked from commit 7f9f7a20b0)
2025-07-21 06:13:49 +00:00
Wolfgang Walther
383a849bd4 ci/github-script: extract common withRateLimit.js
This can and should be re-used across different scripts.

(cherry picked from commit 2192c5b6e8)
2025-07-15 12:57:57 +00:00
Wolfgang Walther
6f32a5f04e ci/github-script: default to commonjs
Since all github-scripts need to be written in commonjs, we now default
to it by not setting package.json. Support from editors for .js files is
slightly better than .cjs. To still allow using module imports in the
test runner script, we trick node into loading the script itself as a
module again via `--import ./run`.

(cherry picked from commit d11eba1e1d)
2025-07-15 12:57:57 +00:00