Skip to content
2 changes: 2 additions & 0 deletions .github/workflows/gosec.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# GoSec Security Checker
# This workflow runs gosec to check Go code for security issues
name: GoSec Security Checker
permissions:
contents: read

on:
push:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/markdownlint.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Markdown Lint
# This workflow runs markdownlint on all Markdown files in the repository
name: Markdown Lint
permissions:
contents: read

on:
push:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/metrics.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# GitHub Metrics
# This workflow generates a metrics SVG and commits it to the repository
name: Metrics Embed
permissions:
contents: write

on:
schedule: [{cron: "0 0 * * 0"}] # every week
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
permissions:
contents: read
name: Pylint

on: [push]
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/python-docs.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Python Auto Documentation
# This workflow auto-generates documentation using Sphinx
name: Python Auto Documentation
permissions:
contents: read

on:
push:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/python-style.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Python Style Check
# This workflow checks Python code style using flake8
name: Python Style Check
permissions:
contents: read

on:
push:
Expand Down
2 changes: 1 addition & 1 deletion build/azure-pipelines/publish-types/update-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ try {

const dtsUri = `https://raw.githubusercontent.com/microsoft/vscode/${tag}/src/vscode-dts/vscode.d.ts`;
const outPath = path.resolve(process.cwd(), 'DefinitelyTyped/types/vscode/index.d.ts');
cp.execSync(`curl ${dtsUri} --output ${outPath}`);
cp.execFileSync('curl', [dtsUri, '--output', outPath]);

updateDTSFile(outPath, tag);

Expand Down
Loading