From a104de38b69b0290e1dc6fad1bf60cfd9fa46ef2 Mon Sep 17 00:00:00 2001 From: Wolfsblvt Date: Mon, 10 Mar 2025 20:11:24 +0100 Subject: [PATCH] Remove unused maintainers response workflow --- .github/workflows/manage-pending-labels.yml | 42 --------------------- 1 file changed, 42 deletions(-) delete mode 100644 .github/workflows/manage-pending-labels.yml diff --git a/.github/workflows/manage-pending-labels.yml b/.github/workflows/manage-pending-labels.yml deleted file mode 100644 index 44d91b523..000000000 --- a/.github/workflows/manage-pending-labels.yml +++ /dev/null @@ -1,42 +0,0 @@ -# When a new comment is added to an issue, if it had the Stale or Awaiting User Response labels, then those labels will be removed - -name: 🎯 Add/ Remove Awaiting Response Labels -on: - issue_comment: - types: [created] -jobs: - remove-stale: - runs-on: ubuntu-latest - if: ${{ github.event.comment.author_association != 'COLLABORATOR' && github.event.comment.author_association != 'OWNER' }} - steps: - - name: Remove Stale labels when Updated - uses: actions-cool/issues-helper@v2 - with: - actions: remove-labels - token: ${{ secrets.BOT_GITHUB_TOKEN || secrets.GITHUB_TOKEN }} - issue-number: ${{ github.event.issue.number }} - labels: '🚏 Awaiting User Response,⚰️ Stale' - - add-awaiting-author: - runs-on: ubuntu-latest - if: ${{!github.event.issue.pull_request && github.event.comment.author_association != 'COLLABORATOR' && github.event.comment.author_association != 'OWNER' && github.event.issue.state == 'open' }} - steps: - - name: Add Awaiting Author labels when Updated - uses: actions-cool/issues-helper@v2 - with: - actions: add-labels - token: ${{ secrets.BOT_GITHUB_TOKEN || secrets.GITHUB_TOKEN }} - issue-number: ${{ github.event.issue.number }} - labels: '👤 Awaiting Maintainer Response' - - remove-awaiting-author: - runs-on: ubuntu-latest - if: ${{ github.event.comment.author_association == 'OWNER' }} - steps: - - name: Remove Awaiting Author labels when Updated - uses: actions-cool/issues-helper@v2 - with: - actions: remove-labels - token: ${{ secrets.BOT_GITHUB_TOKEN || secrets.GITHUB_TOKEN }} - issue-number: ${{ github.event.issue.number }} - labels: '👤 Awaiting Maintainer Response' \ No newline at end of file