Files
vscode/.github/workflows/latest-release-monitor.yml
2020-06-02 19:34:07 -07:00

25 lines
714 B
YAML

name: Latest Release Monitor
on:
schedule:
- cron: 0/5 * * * *
jobs:
main:
runs-on: ubuntu-latest
steps:
- name: Checkout Actions
uses: actions/checkout@v2
with:
repository: 'microsoft/vscode-github-triage-actions'
path: ./actions
ref: v19
- name: Install Actions
run: npm install --production --prefix ./actions
- name: Install Storage Module
run: npm install @azure/storage-blob
- name: Run Latest Release Monitor
uses: ./actions/latest-release-monitor
with:
storageKey: ${{secrets.AZURE_BLOB_STORAGE_CONNECTION_STRING_NEW}}
token: ${{secrets.VSCODE_ISSUE_TRIAGE_BOT_PAT}}