From 23a5dad0dfb0252fab500c393202d4e95c4598cb Mon Sep 17 00:00:00 2001 From: Awesome Stickz <38146668+AwesomeStickz@users.noreply.github.com> Date: Fri, 24 Jul 2026 18:33:35 +0530 Subject: [PATCH] ci: remove w_unverified_labeler workflow. remove w-unverified, w-verified, w-pending in favor of no-stale. remove no-issue-activity, no-pr-activity in favor of "stale" (#5212) --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- .github/workflows/labeler.yml | 12 ------------ .github/workflows/stale.yml | 9 ++++----- 3 files changed, 5 insertions(+), 18 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 5293dc759..afef90a33 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,7 +1,7 @@ name: Bug Report description: Found a bug? Help us squash it. title: '[Bug]: ' -labels: ['t-bug', 'w-unverified'] +labels: ['t-bug'] body: - type: markdown attributes: diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index 21415c929..f59b101b1 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -17,15 +17,3 @@ jobs: - uses: fuxingloh/multi-labeler@v5 with: github-token: ${{secrets.GITHUB_TOKEN}} - - w_unverified_labeler: - name: Add w-unverified Label - if: ${{ !(github.event_name == 'pull_request_target' && (github.event.action == 'edited' || github.event.action == 'synchronize' )) && !(github.event_name == 'issues' && contains(github.event.issue.labels.*.name, 'api-docs-commits')) && github.actor != 'dependabot[bot]'}} - runs-on: ubuntu-latest - steps: - - run: gh issue edit "$NUMBER" --add-label "$LABELS" - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - GH_REPO: ${{ github.repository }} - NUMBER: ${{ github.event.pull_request.number || github.event.issue.number }} - LABELS: w-unverified diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index df4ebcbca..bc2464a19 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -20,9 +20,8 @@ jobs: repo-token: ${{ secrets.GITHUB_TOKEN }} stale-issue-message: 'This issue has gone stale for over a month. If this issue is useful, leave a comment below. Otherwise, it will be closed shortly.' stale-pr-message: 'This pull request has gone stale for over a month. If this pull request is still useful, leave a comment below. Otherwise, it will be closed shortly.' - stale-issue-label: 'no-issue-activity' - stale-pr-label: 'no-pr-activity' - only-labels: 'w-unverified' - exempt-issue-labels: 'api-docs-commits,help-wanted,w-verified,w-pending' - exempt-pr-labels: 'w-verified' + stale-issue-label: 'stale' + stale-pr-label: 'stale' + exempt-issue-labels: 'api-docs-commits,help-wanted,no-stale' + exempt-pr-labels: 'no-stale' close-issue-reason: 'not_planned'