From a925626a0ec19f39349b72ace5ac6ff1d6e5d85f Mon Sep 17 00:00:00 2001 From: Jackson Kearl Date: Mon, 9 May 2022 12:42:04 -0700 Subject: [PATCH] Add action to ping when 1.999.0 tag pushed (#149112) --- .github/workflows/bad-tag.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/bad-tag.yml diff --git a/.github/workflows/bad-tag.yml b/.github/workflows/bad-tag.yml new file mode 100644 index 00000000000..e996639dfbd --- /dev/null +++ b/.github/workflows/bad-tag.yml @@ -0,0 +1,22 @@ +name: Bad Tag +on: + create + +jobs: + main: + runs-on: ubuntu-latest + if: github.event.ref == '1.999.0' + steps: + - name: Checkout Actions + uses: actions/checkout@v2 + with: + repository: "microsoft/vscode-github-triage-actions" + ref: stable + path: ./actions + - name: Install Actions + run: npm install --production --prefix ./actions + - name: Run Bad Tag + uses: ./actions/tag-alert + with: + token: ${{secrets.VSCODE_ISSUE_TRIAGE_BOT_PAT}} + tag-name: '1.999.0'