diff --git a/.github/workflows/stale.yaml b/.github/workflows/stale.yaml deleted file mode 100644 index cb9870c52..000000000 --- a/.github/workflows/stale.yaml +++ /dev/null @@ -1,22 +0,0 @@ -name: 'Infra: Close stale issues' -on: - schedule: - - cron: '30 1 * * *' - -jobs: - stale: - runs-on: ubuntu-latest - steps: - - uses: actions/stale@v8 - with: - days-before-issue-stale: 7 - days-before-issue-close: 3 - days-before-pr-stale: 7 - days-before-pr-close: 7 - stale-issue-message: 'This issue has been automatically marked as stale because no requested feedback has been provided. It will be closed if no further activity occurs. Thank you for your contributions.' - stale-pr-message: 'This PR has been automatically marked as stale because no requested changes have been applied. It will be closed if no further activity occurs. Thank you for your contributions.' - stale-issue-label: 'status/stale' - stale-pr-label: 'status/stale' - only-labels: 'status/pending' - remove-issue-stale-when-updated: true - labels-to-remove-when-unstale: 'status/pending' diff --git a/.github/workflows/triage_issues.yml b/.github/workflows/triage_issues.yml deleted file mode 100644 index 344ba5c11..000000000 --- a/.github/workflows/triage_issues.yml +++ /dev/null @@ -1,14 +0,0 @@ -name: "Infra: Triage: Apply triage label for issues" -on: - issues: - types: - - opened -jobs: - triage_issues: - runs-on: ubuntu-latest - steps: - - name: Label issue - uses: andymckay/labeler@master - with: - add-labels: "status/triage" - ignore-if-assigned: true diff --git a/.github/workflows/triage_prs.yml b/.github/workflows/triage_prs.yml deleted file mode 100644 index 6906cd8a8..000000000 --- a/.github/workflows/triage_prs.yml +++ /dev/null @@ -1,14 +0,0 @@ -name: "Infra: Triage: Apply triage label for PRs" -on: - pull_request: - types: - - opened -jobs: - triage_prs: - runs-on: ubuntu-latest - steps: - - name: Label PR - uses: andymckay/labeler@master - with: - add-labels: "status/triage" - ignore-if-labeled: true