mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 07:00:11 +01:00
Add locker action
This commit is contained in:
parent
ee5303f9cc
commit
4268f423e8
1 changed files with 28 additions and 0 deletions
28
.github/workflows/locker.yml
vendored
Normal file
28
.github/workflows/locker.yml
vendored
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
name: Locker
|
||||
on:
|
||||
schedule:
|
||||
- cron: 21 23 * * * # 5:20pm Redmond
|
||||
repository_dispatch:
|
||||
types: [trigger-locker]
|
||||
# enable users to manually trigger with workflow_dispatch
|
||||
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 Locker
|
||||
uses: ./actions/locker
|
||||
with:
|
||||
daysSinceClose: 45
|
||||
appInsightsKey: ${{secrets.TRIAGE_ACTIONS_APP_INSIGHTS}}
|
||||
daysSinceUpdate: 3
|
||||
ignoredLabel: '*out-of-scope'
|
||||
Loading…
Add table
Add a link
Reference in a new issue