From a626a732890d4eb5d085e3744c9cff6471b15c52 Mon Sep 17 00:00:00 2001 From: Jan K9f Date: Mon, 2 Jun 2025 14:04:15 +0200 Subject: [PATCH] chore: Add stale pipeline --- .gitea/workflows/stale.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .gitea/workflows/stale.yml diff --git a/.gitea/workflows/stale.yml b/.gitea/workflows/stale.yml new file mode 100644 index 0000000..c3a3d2f --- /dev/null +++ b/.gitea/workflows/stale.yml @@ -0,0 +1,13 @@ +name: "Close stale issues and PRs" +on: + schedule: + - cron: "30 1 * * *" + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v9 + with: + stale-issue-message: "Message to comment on stale issues. If none provided, will not mark issues stale" + stale-pr-message: "Message to comment on stale PRs. If none provided, will not mark PRs stale"