aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/response.yml
diff options
context:
space:
mode:
authordundargoc <33953936+dundargoc@users.noreply.github.com>2023-04-27 22:07:44 +0200
committerGitHub <noreply@github.com>2023-04-27 22:07:44 +0200
commitc50cdd62706ed00a2bb9e1201ac8aac1b71e9a16 (patch)
tree4eaab8798a81c02f500ea8531136adb789d8ea75 /.github/workflows/response.yml
parent1cb60405548e79f1ec63921540e1c3ebb3ddcc01 (diff)
downloadrneovim-c50cdd62706ed00a2bb9e1201ac8aac1b71e9a16.tar.gz
rneovim-c50cdd62706ed00a2bb9e1201ac8aac1b71e9a16.tar.bz2
rneovim-c50cdd62706ed00a2bb9e1201ac8aac1b71e9a16.zip
ci: replace stale bot with custom implementation
The stale action has a bug where it won't close an issue/PR if it has comments after the stale label.
Diffstat (limited to '.github/workflows/response.yml')
-rw-r--r--.github/workflows/response.yml35
1 files changed, 35 insertions, 0 deletions
diff --git a/.github/workflows/response.yml b/.github/workflows/response.yml
new file mode 100644
index 0000000000..c0db77645f
--- /dev/null
+++ b/.github/workflows/response.yml
@@ -0,0 +1,35 @@
+name: no_response
+on:
+ schedule:
+ - cron: '30 1 * * *' # Run every day at 01:30
+ workflow_dispatch:
+ issue_comment:
+
+jobs:
+ close:
+ if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
+ runs-on: ubuntu-latest
+ permissions:
+ issues: write
+ pull-requests: write
+ steps:
+ - uses: actions/checkout@v3
+ - uses: actions/github-script@v6
+ with:
+ script: |
+ const script = require('./.github/scripts/close_unresponsive.js')
+ await script({github, context})
+
+ remove_label:
+ if: github.event_name == 'issue_comment'
+ runs-on: ubuntu-latest
+ permissions:
+ issues: write
+ pull-requests: write
+ steps:
+ - uses: actions/checkout@v3
+ - uses: actions/github-script@v6
+ with:
+ script: |
+ const script = require('./.github/scripts/remove_response_label.js')
+ await script({github, context})