mirror of
https://github.com/wg-easy/wg-easy.git
synced 2026-04-02 18:49:02 +00:00
Some checks failed
Mark stale issues and pull requests / stale (push) Has been cancelled
CodeQL / Analyze (javascript-typescript) (push) Has been cancelled
Edge / Build Docker (map[os:ubuntu-24.04-arm platform:linux/arm/v7]) (push) Has been cancelled
Edge / Build Docker (map[os:ubuntu-24.04-arm platform:linux/arm64]) (push) Has been cancelled
Edge / Build Docker (map[os:ubuntu-latest platform:linux/amd64]) (push) Has been cancelled
Lint / Check Docs (push) Has been cancelled
Edge / Merge & Deploy Docker (push) Has been cancelled
Edge / Build & Deploy Docs (push) Has been cancelled
Lint / Lint (format:check) (push) Has been cancelled
Lint / Lint (lint) (push) Has been cancelled
Lint / Lint (typecheck) (push) Has been cancelled
44 lines
1.6 KiB
YAML
44 lines
1.6 KiB
YAML
# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time.
|
|
#
|
|
# You can adjust the behavior by modifying this file.
|
|
# For more information, see:
|
|
# https://github.com/actions/stale
|
|
name: Mark stale issues and pull requests
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: "*/5 * * * *"
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
if: github.repository_owner == 'wg-easy'
|
|
permissions:
|
|
actions: write
|
|
issues: write
|
|
pull-requests: write
|
|
|
|
steps:
|
|
- uses: actions/stale@v10
|
|
with:
|
|
# Stale after 30 days of inactivity
|
|
days-before-issue-stale: 30
|
|
# Close after 14 days of being stale
|
|
days-before-issue-close: 14
|
|
stale-issue-label: "stale"
|
|
stale-issue-message: "This issue is stale because it has been open for 30 days with no activity."
|
|
close-issue-message: "This issue was closed because it has been inactive for 14 days since being marked as stale."
|
|
days-before-pr-stale: 30
|
|
days-before-pr-close: 14
|
|
stale-pr-message: "This PR is stale because it has been open for 30 days with no activity."
|
|
close-pr-message: "This PR was closed because it has been inactive for 14 days since being marked as stale."
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
operations-per-run: 100
|
|
# Ignore Feature requests (https://github.com/actions/stale/issues/1293)
|
|
only-issue-types: "Bug"
|
|
# Ignore confirmed bugs
|
|
exempt-issue-labels: "status: confirmed"
|
|
# Ignore PRs with milestones
|
|
exempt-all-pr-milestones: true
|