latest-release-monitor.yml 714 字节
Newer Older
1 2 3
name: Latest Release Monitor
on:
  schedule:
J
Jackson Kearl 已提交
4
    - cron: 0/5 * * * *
5 6 7 8 9 10 11 12 13 14

jobs:
  main:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout Actions
        uses: actions/checkout@v2
        with:
          repository: 'microsoft/vscode-github-triage-actions'
          path: ./actions
J
Jackson Kearl 已提交
15
          ref: v22
16 17
      - name: Install Actions
        run: npm install --production --prefix ./actions
18
      - name: Install Storage Module
19
        run: npm install @azure/storage-blob
J
Jackson Kearl 已提交
20
      - name: Run Latest Release Monitor
21
        uses: ./actions/latest-release-monitor
J
Jackson Kearl 已提交
22 23
        with:
          storageKey: ${{secrets.AZURE_BLOB_STORAGE_CONNECTION_STRING_NEW}}
J
Jackson Kearl 已提交
24
          token: ${{secrets.VSCODE_ISSUE_TRIAGE_BOT_PAT}}