Some checks failed
Docker / Docker Buildx (push) Has been cancelled
Build Debian package / Build package (release) Has been cancelled
Build and Deploy / prepare (release) Has been cancelled
Deploy release / Deploy to Cloudflare Pages (release) Has been cancelled
Build and Deploy / Trigger Pro pipeline (release) Has been cancelled
Build and Deploy / Windows arm64 (release) Has been cancelled
Build and Deploy / Windows x64 (release) Has been cancelled
Build and Deploy / macOS (release) Has been cancelled
Build and Deploy / Linux amd64 (sqlcipher static) (release) Has been cancelled
Build and Deploy / Linux arm64 (sqlcipher static) (release) Has been cancelled
Build and Deploy / ${{ needs.prepare.outputs.deploy == 'true' && 'Deploy' || 'Deploy (dry-run)' }} (release) Has been cancelled
Build and Deploy / Deploy builds to ESS (release) Has been cancelled
30 lines
1.2 KiB
YAML
30 lines
1.2 KiB
YAML
name: Close stale issues & PRs
|
|
on:
|
|
workflow_dispatch: {}
|
|
schedule:
|
|
- cron: "30 1 * * *"
|
|
permissions: {}
|
|
jobs:
|
|
close:
|
|
runs-on: ubuntu-24.04
|
|
permissions:
|
|
actions: write
|
|
issues: write
|
|
pull-requests: write
|
|
steps:
|
|
- uses: actions/stale@b5d41d4e1d5dceea10e7104786b73624c18a190f # v10
|
|
with:
|
|
operations-per-run: 100
|
|
|
|
# Flaky test issue closing
|
|
any-of-issue-labels: "Z-Flaky-Test-Chrome,Z-Flaky-Test-Firefox,Z-Flaky-Test-Webkit"
|
|
days-before-issue-stale: 14
|
|
days-before-issue-close: 0
|
|
close-issue-message: "This flaky test issue has not been updated in 14 days. It is being closed as presumed resolved."
|
|
exempt-issue-labels: "Z-Flaky-Test-Disabled"
|
|
|
|
# Stale PR closing
|
|
days-before-pr-stale: 180
|
|
days-before-pr-close: 0
|
|
close-pr-message: "This PR has been automatically closed because it has been stale for 180 days. If you wish to continue working on this PR, please ping a maintainer to reopen it."
|