From d36a5a74d36e9dd3051955b7c979f0f69447d84a Mon Sep 17 00:00:00 2001 From: tison Date: Mon, 18 Mar 2024 11:01:10 +0800 Subject: [PATCH] ci: unassign issues stale 14 days ago (#3529) 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 0000000000..3772bc499d --- /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 }}