From 3c34d7cd5168c62f3e5efa0c5a8d937ed3e8df94 Mon Sep 17 00:00:00 2001 From: tison Date: Sat, 16 Mar 2024 22:43:20 +0800 Subject: [PATCH] ci: unassign issues stale 14 days ago This closes https://github.com/GreptimeTeam/greptimedb/issues/3525. --- .github/workflows/unassign.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/unassign.yml diff --git a/.github/workflows/unassign.yml b/.github/workflows/unassign.yml new file mode 100644 index 000000000000..3772bc499d21 --- /dev/null +++ b/.github/workflows/unassign.yml @@ -0,0 +1,21 @@ +name: Auto Unassign +on: + schedule: + - cron: '4 2 * * *' + workflow_dispatch: + +permissions: + contents: read + issues: write + pull-requests: write + +jobs: + auto-unassign: + name: Auto Unassign + runs-on: ubuntu-latest + steps: + - name: Auto Unassign + uses: tisonspieces/auto-unassign@main + with: + token: ${{ secrets.GITHUB_TOKEN }} + repository: ${{ github.repository }}