summaryrefslogtreecommitdiffstatshomepage
path: root/.github/workflows/response.yml
blob: 235888b42fc343fe7f30f06d6fae35d243e6ce0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: no_response
on:
  schedule:
    - cron: '30 1 * * *' # Run every day at 01:30
  workflow_dispatch:
  issue_comment:

permissions: {}

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@v6
        with:
          persist-credentials: false

      - uses: actions/github-script@v9
        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@v6
        with:
          persist-credentials: false

      - uses: actions/github-script@v9
        with:
          script: |
            const script = require('./.github/scripts/remove_response_label.js')
            await script({github, context})