From 236865be83c6caea6fbf8b533797ab81ef3d3ae2 Mon Sep 17 00:00:00 2001 From: Florian Lagg Date: Mon, 6 Jan 2025 22:43:33 +0100 Subject: [PATCH] gail overview on active issues --- .../.github/workflows/issues-autoclose.yml | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .git-subtree/python-govee-api/.github/workflows/issues-autoclose.yml diff --git a/.git-subtree/python-govee-api/.github/workflows/issues-autoclose.yml b/.git-subtree/python-govee-api/.github/workflows/issues-autoclose.yml new file mode 100644 index 0000000..a29baac --- /dev/null +++ b/.git-subtree/python-govee-api/.github/workflows/issues-autoclose.yml @@ -0,0 +1,22 @@ +name: Close inactive issues +on: + schedule: + - cron: "30 1 * * *" + +jobs: + close-issues: + runs-on: ubuntu-latest + permissions: + issues: write + pull-requests: write + steps: + - uses: actions/stale@v5 + with: + days-before-issue-stale: 60 + days-before-issue-close: 30 + 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: -1 + days-before-pr-close: -1 + repo-token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file