Can you add indented configuration to the head and body of html files-能否对html文件的head和body增加是否缩进的配置 #215
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: On Open | |
on: | |
issues: | |
types: [opened] | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
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 Clipboard Labeler | |
uses: ./actions/regex-labeler | |
with: | |
label: "invalid" | |
mustNotMatch: "^We have written the needed data into your clipboard because it was too large to send\\. Please paste\\.$" | |
comment: "It looks like you're using the VS Code Issue Reporter but did not paste the text generated into the created issue. We've closed this issue, please open a new one containing the text we placed in your clipboard.\n\nHappy Coding!" |