summaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorIan Lewis <ianlewis@google.com>2021-06-08 20:05:28 -0700
committergVisor bot <gvisor-bot@google.com>2021-06-08 20:08:17 -0700
commit927bb26517e7181e18c714d2892595cf1de8d4db (patch)
tree3dbb5dd188b5e141dd5ccd571bb63ba2a67d5094 /.github
parentcf713ee69e4ddffb6a69ea3ee78c8ea55ec9965e (diff)
Don't mark issues as stale.
PiperOrigin-RevId: 378306356
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/issue_reviver.yml2
-rw-r--r--.github/workflows/stale.yml22
2 files changed, 1 insertions, 23 deletions
diff --git a/.github/workflows/issue_reviver.yml b/.github/workflows/issue_reviver.yml
index f2d584ac0..a6a9b1b4f 100644
--- a/.github/workflows/issue_reviver.yml
+++ b/.github/workflows/issue_reviver.yml
@@ -1,5 +1,5 @@
# This workflow revives issues that are still referenced in the code, and may
-# have been accidentally closed or marked stale.
+# have been accidentally closed.
name: "Issue reviver"
"on":
schedule:
diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml
deleted file mode 100644
index ce300869c..000000000
--- a/.github/workflows/stale.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-# The stale workflow closes stale issues and pull requests, unless specific
-# tags have been applied in order to keep them open.
-name: "Stale issues"
-"on":
- schedule:
- - cron: "0 0 * * *"
-
-jobs:
- stale:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/stale@v3
- with:
- repo-token: ${{ secrets.GITHUB_TOKEN }}
- stale-issue-label: 'stale'
- stale-pr-label: 'stale'
- exempt-issue-labels: 'revived, exported, type: bug, type: cleanup, type: enhancement, type: process, type: proposal, type: question'
- exempt-pr-labels: 'ready to pull, exported'
- stale-issue-message: 'This issue is stale because it has been open 90 days with no activity. Remove the stale label or comment or this will be closed in 30 days.'
- stale-pr-message: 'This pull request is stale because it has been open 90 days with no activity. Remove the stale label or comment or this will be closed in 30 days.'
- days-before-stale: 90
- days-before-close: 30