From a05f8aab340b4f1a4b6f8c750e9038ab69f14d9d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 2 Apr 2026 11:16:43 +0000 Subject: [PATCH] chore: add stalebot in dryrun MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit built from commit afadf53f7f62f18e9a6ef56e5305eab43b7d8901 dated 2026-04-02 13:13:19 +0200 by Stéphane Lesimple (speed47_github@speed47.net) --- .github/workflows/stale.yml | 23 +++++++++++++++++++++++ spectre-meltdown-checker.sh | 2 +- 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/stale.yml diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml new file mode 100644 index 0000000..b234f10 --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,23 @@ +name: 'Manage stale issues and PRs' + +on: + schedule: + - cron: '37 7 * * *' + +permissions: + issues: write + pull-requests: write + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v10 + with: + any-of-labels: 'needs-more-info,answered' + labels-to-remove-when-unstale: 'needs-more-info,answered' + days-before-stale: 30 + days-before-close: 7 + stale-issue-label: stale + remove-stale-when-updated: true + debug-only: true diff --git a/spectre-meltdown-checker.sh b/spectre-meltdown-checker.sh index 2f77dd3..caf8fd9 100755 --- a/spectre-meltdown-checker.sh +++ b/spectre-meltdown-checker.sh @@ -13,7 +13,7 @@ # # Stephane Lesimple # -VERSION='26.21.0401891' +VERSION='26.21.0402469' # --- Common paths and basedirs --- readonly VULN_SYSFS_BASE="/sys/devices/system/cpu/vulnerabilities"