mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
ref: https://github.com/paradigmxyz/reth/actions/runs/5486255403/jobs/9996118421 ref: https://github.com/foundry-rs/foundry/issues/3827 Compiling serde v1.0.164 error: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.25' not found (required by /target/maxperf/deps/libserde_derive-6e9709c79bb5c7fa.so) --> /cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.164/src/lib.rs:340:1 | 340 | extern crate serde_derive; | ^^^^^^^^^^^^^^^^^^^^^^^^^^
27 lines
843 B
YAML
27 lines
843 B
YAML
name: stale issues
|
|
on:
|
|
workflow_dispatch: {}
|
|
schedule:
|
|
- cron: "30 1 * * *"
|
|
|
|
jobs:
|
|
close-issues:
|
|
runs-on: ubuntu-20.04
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
steps:
|
|
- uses: actions/stale@v8
|
|
with:
|
|
days-before-stale: 14
|
|
days-before-close: 7
|
|
stale-issue-label: "S-stale"
|
|
stale-pr-label: "S-stale"
|
|
exempt-issue-labels: "M-prevent-stale"
|
|
exempt-pr-labels: "M-prevent-stale"
|
|
stale-issue-message: "This issue is stale because it has been open for 14 days with no activity."
|
|
close-issue-message: "This issue was closed because it has been inactive for 7 days since being marked as stale."
|
|
exempt-all-milestones: true
|
|
exempt-all-assignees: true
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|