Bad Tag #1327
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@v4 | |
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' |