mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 07:00:11 +01:00
Add 'Needs More Info Closer'
This commit is contained in:
parent
4268f423e8
commit
bcc7fd43aa
2 changed files with 31 additions and 2 deletions
3
.github/workflows/locker.yml
vendored
3
.github/workflows/locker.yml
vendored
|
|
@ -4,8 +4,7 @@ on:
|
||||||
- cron: 21 23 * * * # 5:20pm Redmond
|
- cron: 21 23 * * * # 5:20pm Redmond
|
||||||
repository_dispatch:
|
repository_dispatch:
|
||||||
types: [trigger-locker]
|
types: [trigger-locker]
|
||||||
# enable users to manually trigger with workflow_dispatch
|
workflow_dispatch:
|
||||||
workflow_dispatch: {}
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
main:
|
main:
|
||||||
|
|
|
||||||
30
.github/workflows/needs-more-info-closer.yml
vendored
Normal file
30
.github/workflows/needs-more-info-closer.yml
vendored
Normal file
|
|
@ -0,0 +1,30 @@
|
||||||
|
name: Needs More Info Closer
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: 20 12 * * * # 5:20am Redmond
|
||||||
|
repository_dispatch:
|
||||||
|
types: [trigger-needs-more-info]
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
main:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout Actions
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
repository: 'microsoft/vscode-github-triage-actions'
|
||||||
|
path: ./actions
|
||||||
|
ref: stable
|
||||||
|
- name: Install Actions
|
||||||
|
run: npm install --production --prefix ./actions
|
||||||
|
- name: Run Needs More Info Closer
|
||||||
|
uses: ./actions/needs-more-info-closer
|
||||||
|
with:
|
||||||
|
appInsightsKey: ${{secrets.TRIAGE_ACTIONS_APP_INSIGHTS}}
|
||||||
|
label: needs more info
|
||||||
|
closeDays: 7
|
||||||
|
additionalTeam: 'spahnke|rcjsuen'
|
||||||
|
closeComment: "This issue has been closed automatically because it needs more information and has not had recent activity. See also our [issue reporting](https://aka.ms/vscodeissuereporting) guidelines.\n\nHappy Coding!"
|
||||||
|
pingDays: 120
|
||||||
|
pingComment: "Hey @${assignee}, this issue might need further attention.\n\n@${author}, you can help us out by closing this issue if the problem no longer exists, or adding more information."
|
||||||
Loading…
Add table
Add a link
Reference in a new issue