From e36c5c06cc341da9aee47005875602f974e4bbb3 Mon Sep 17 00:00:00 2001 From: Pierrick HYMBERT Date: Thu, 14 Mar 2024 13:31:41 +0100 Subject: [PATCH 1/2] issues: ci - close inactive issue with workflow --- .github/workflows/close-issue.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/close-issue.yml diff --git a/.github/workflows/close-issue.yml b/.github/workflows/close-issue.yml new file mode 100644 index 0000000000000..c84cd8a3869b1 --- /dev/null +++ b/.github/workflows/close-issue.yml @@ -0,0 +1,22 @@ +name: Close inactive issues +on: + schedule: + - cron: "0 0 * * *" + +jobs: + close-issues: + runs-on: ubuntu-latest + permissions: + issues: write + pull-requests: write + steps: + - uses: actions/stale@v5 + with: + days-before-issue-stale: 30 + 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: -1 + days-before-pr-close: -1 + repo-token: ${{ secrets.GITHUB_TOKEN }} From f9ae8e093f8cc130b493b5abecf68fe2bdd397ce Mon Sep 17 00:00:00 2001 From: Pierrick HYMBERT Date: Sat, 16 Mar 2024 13:17:35 +0100 Subject: [PATCH 2/2] ci: close issue, change workflow schedule time --- .github/workflows/close-issue.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/close-issue.yml b/.github/workflows/close-issue.yml index c84cd8a3869b1..bc08a72d03166 100644 --- a/.github/workflows/close-issue.yml +++ b/.github/workflows/close-issue.yml @@ -1,7 +1,7 @@ name: Close inactive issues on: schedule: - - cron: "0 0 * * *" + - cron: "42 0 * * *" jobs: close-issues: