From 16359f46986bef6bd974778522bc6bbb24d57062 Mon Sep 17 00:00:00 2001 From: Bhavya U Date: Fri, 19 Jul 2024 15:45:49 -0700 Subject: [PATCH] Remove latest-release-monitor-workflow (#222246) --- .github/workflows/latest-release-monitor.yml | 36 -------------------- 1 file changed, 36 deletions(-) delete mode 100644 .github/workflows/latest-release-monitor.yml diff --git a/.github/workflows/latest-release-monitor.yml b/.github/workflows/latest-release-monitor.yml deleted file mode 100644 index 7db2cedf9df..00000000000 --- a/.github/workflows/latest-release-monitor.yml +++ /dev/null @@ -1,36 +0,0 @@ -name: Latest Release Monitor - -permissions: - id-token: write - contents: read - -on: - schedule: - - cron: 0/5 * * * * - repository_dispatch: - types: [trigger-latest-release-monitor] - -jobs: - main: - runs-on: ubuntu-latest - environment: main - steps: - - uses: azure/login@v2 - with: - client-id: ${{ vars.AZURE_CLIENT_ID }} - tenant-id: ${{ vars.AZURE_TENANT_ID }} - allow-no-subscriptions: true - - name: Checkout Actions - uses: actions/checkout@v4 - with: - repository: "microsoft/vscode-github-triage-actions" - path: ./actions - ref: stable - - name: Install Actions - run: npm install --production --prefix ./actions - - name: Install Storage Module - run: npm install @azure/storage-blob@12.1.1 - - name: Run Latest Release Monitor - uses: ./actions/latest-release-monitor - with: - token: ${{secrets.VSCODE_ISSUE_TRIAGE_BOT_PAT}}