mirror of
https://github.com/speed47/spectre-meltdown-checker.git
synced 2026-04-07 09:13:20 +02:00
7a7408dfix: add rebleet to --variantcccb3c0enh: add known fixed ucode versions for CVE-2023-23583 (Reptar) and CVE-2024-45332 (BPI)090f109doc: add CVE-2023-31315 (SinkClose) to the unsupported list, add categories5dc9c3cchore: reorder CVE list in README.mda00fab1feat: implement CVE-2025-40300 (VMScape) and CVE-2024-45332 (BTI)e0b818fchore: stalebot: disable dryrun by default4af1155feat: implement CVE-2024-28956 (ITS, Indirect Target Selection) vulnerability and mitigation detectiondfed6f3doc: add note about more unsupported CVEs1652977add a generated version of src/libs/003_intel_models.sha089ae8fix: sys_interface_check() must set the caller's $msg var (closes #533)cc6bbaachore: don't include src/ generated files in build2717b0adoc: CVE-2020-12965 unsupported (#478)
34 lines
767 B
YAML
34 lines
767 B
YAML
name: 'Manage stale issues and PRs'
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '37 7 * * *'
|
|
workflow_dispatch:
|
|
inputs:
|
|
action:
|
|
description: "dry-run"
|
|
required: true
|
|
default: "dryrun"
|
|
type: choice
|
|
options:
|
|
- dryrun
|
|
- apply
|
|
|
|
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: ${{ case(inputs.action == 'dryrun', true, false) }}
|