Skip to content

Commit c70dc9e

Browse files
Separate "investigate costing" and "investigate" for debugger issue workflows (#6646)
1 parent 0aaf0c5 commit c70dc9e

2 files changed

Lines changed: 28 additions & 2 deletions

File tree

.github/workflows/investigate-closer-debugger.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Investigate closure - debugger
1+
name: Investigate closer - debugger
22
on:
33
schedule:
44
- cron: 10 11 * * * # Run at 11:10 AM UTC (3:10 AM PST, 4:10 AM PDT)
@@ -20,7 +20,7 @@ jobs:
2020
uses: ./.github/actions/StaleCloser
2121
with:
2222
readonly: ${{ github.event.inputs.readonly }}
23-
labels: "investigate,investigate: costing,debugger"
23+
labels: investigate,debugger
2424
ignoreLabels: language service,internal
2525
closeDays: 180
2626
closeComment: "This issue has been closed automatically because it has not had recent activity."
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Investigate Costing closer - debugger
2+
on:
3+
schedule:
4+
- cron: 10 11 * * * # Run at 11:10 AM UTC (3:10 AM PST, 4:10 AM PDT)
5+
workflow_dispatch:
6+
inputs:
7+
readonly:
8+
description: "readonly: Specify true or 1 to prevent changes from being commited to GitHub"
9+
default: false
10+
11+
jobs:
12+
main:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout Actions
16+
uses: actions/checkout@v2
17+
- name: Install Actions
18+
run: cd ./.github/actions && npm install --production && cd ../..
19+
- name: Stale Closer
20+
uses: ./.github/actions/StaleCloser
21+
with:
22+
readonly: ${{ github.event.inputs.readonly }}
23+
labels: "investigate: costing,debugger"
24+
ignoreLabels: language service,internal
25+
closeDays: 180
26+
closeComment: "This issue has been closed automatically because it has not had recent activity."

0 commit comments

Comments
 (0)