Skip to content

Commit 02be02b

Browse files
Add GitHub labels (#15)
* Add github actions * Add checks * Add issue labels * Add github workflow checks * Add update_build_number to nox file * Add vsce * fix run test * Update vsce import * Fix lint * Remove readme validation * fix lint * Remove only in tests * Add xvfb * Fix linting * Set DISPLAY in github actions * Use pipx * Fix lint * Fix pr comments * Update package-lock * Update package-lock
1 parent 553cc0a commit 02be02b

15 files changed

+3754
-993
lines changed

.flake8

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
[flake8]
2+
ignore = W,BLK,
3+
E24,E121,E123,E125,E126,E221,E226,E266,E704,
4+
E265,E722,E501,E731,E306,E401,E302,E222,E303,
5+
E402,E305,E261,E262,E203
6+
exclude =
7+
__pycache__,
8+
.eggs,
9+
.git,
10+
.tox,
11+
.nox,
12+
build,
13+
dist,
14+
src/test/python_tests/test_data

.github/actions/build-vsix/action.yml

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
name: 'Build VSIX'
2+
description: "Build the extension's VSIX"
3+
4+
inputs:
5+
node_version:
6+
description: 'Version of Node to install'
7+
required: true
8+
9+
runs:
10+
using: 'composite'
11+
steps:
12+
- name: Install Node
13+
uses: actions/setup-node@v3
14+
with:
15+
node-version: ${{ inputs.node_version }}
16+
cache: 'npm'
17+
18+
# Minimum supported version is Python 3.7
19+
- name: Use Python 3.7
20+
uses: actions/setup-python@v4
21+
with:
22+
python-version: 3.7
23+
24+
- name: Pip cache
25+
uses: actions/cache@v3
26+
with:
27+
path: ~/.cache/pip
28+
key: ${{ runner.os }}-pip-build-vsix-${{ hashFiles('**/requirements.txt') }}
29+
restore-keys: |
30+
${{ runner.os }}-pip-build-vsix-
31+
32+
# For faster/better builds of sdists.
33+
- name: Update pip, install pipx and install wheel
34+
run: python -m pip install -U pip pipx wheel
35+
shell: bash
36+
37+
- name: Run npm ci
38+
run: npm ci --prefer-offline
39+
shell: bash
40+
41+
- name: Install bundled python libraries
42+
run: pipx run nox --session install_bundled_libs
43+
shell: bash
44+
45+
# Use the GITHUB_RUN_ID environment variable to update the build number.
46+
# GITHUB_RUN_ID is a unique number for each run within a repository.
47+
# This number does not change if you re-run the workflow run.
48+
- name: Update extension build number
49+
run: pipx run nox --session update_build_number -- $GITHUB_RUN_ID
50+
shell: bash
51+
52+
- name: Build VSIX
53+
run: npm run vsce-package
54+
shell: bash
55+
56+
- name: Upload VSIX
57+
uses: actions/upload-artifact@v3
58+
with:
59+
name: linter-package
60+
path: |
61+
**/*.vsix
62+
if-no-files-found: error
63+
retention-days: 7

.github/actions/lint/action.yml

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
name: 'Lint'
2+
description: 'Lint TypeScript and Python code'
3+
4+
inputs:
5+
node_version:
6+
description: 'Version of Node to install'
7+
required: true
8+
9+
runs:
10+
using: 'composite'
11+
steps:
12+
- name: Install Node
13+
uses: actions/setup-node@v3
14+
with:
15+
node-version: ${{ inputs.node_version }}
16+
cache: 'npm'
17+
18+
- name: Install Node dependencies
19+
run: npm ci
20+
shell: bash
21+
22+
- name: Lint TypeScript code
23+
run: npm run lint
24+
shell: bash
25+
26+
- name: Check TypeScript format
27+
run: npm run format-check
28+
shell: bash
29+
30+
- name: Install Python
31+
uses: actions/setup-python@v4
32+
with:
33+
python-version: '3.7'
34+
35+
- name: Pip cache
36+
uses: actions/cache@v3
37+
with:
38+
path: ~/.cache/pip
39+
key: ${{ runner.os }}-pip-lint-${{ hashFiles('**/requirements.txt') }}
40+
restore-keys: |
41+
${{ runner.os }}-pip-lint-
42+
43+
# For faster/better builds of sdists.
44+
- name: Update pip, install pipx and install wheel
45+
run: python -m pip install -U pip pipx wheel
46+
shell: bash
47+
48+
# This will install libraries to a target directory.
49+
- name: Install bundled python libraries
50+
run: pipx run nox --session install_bundled_libs
51+
shell: bash
52+
53+
- name: Check linting and formatting
54+
run: pipx run nox --session lint
55+
shell: bash

.github/dependabot.yml

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: 'github-actions'
4+
directory: /
5+
schedule:
6+
interval: monthly
7+
labels:
8+
- 'no-changelog'
9+
10+
- package-ecosystem: 'github-actions'
11+
directory: .github/actions/lint
12+
schedule:
13+
interval: monthly
14+
labels:
15+
- 'no-changelog'
16+
17+
- package-ecosystem: 'github-actions'
18+
directory: .github/actions/build-vsix
19+
schedule:
20+
interval: monthly
21+
labels:
22+
- 'no-changelog'
23+
24+
- package-ecosystem: 'pip'
25+
directory: /
26+
schedule:
27+
interval: daily
28+
labels:
29+
- 'debt'
30+
commit-message:
31+
include: 'scope'
32+
prefix: 'pip'
33+
34+
- package-ecosystem: 'npm'
35+
directory: /
36+
schedule:
37+
interval: monthly
38+
labels:
39+
- 'no-changelog'
40+
ignore:
41+
- dependency-name: '@types/vscode'
42+
- dependency-name: '@types/node'
43+
- dependency-name: 'vscode-languageclient'

.github/release.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
changelog:
2+
exclude:
3+
labels:
4+
- 'no-changelog'
5+
6+
categories:
7+
- title: Enhancements
8+
labels:
9+
- 'feature-request'
10+
11+
- title: Bug Fixes
12+
labels:
13+
- 'bug'
14+
15+
- title: Code Health
16+
labels:
17+
- 'debt'

.github/workflows/codeql-analysis.yml

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
# For most projects, this workflow file will not need changing; you simply need
2+
# to commit it to your repository.
3+
#
4+
# You may wish to alter this file to override the set of languages analyzed,
5+
# or to provide custom queries or build logic.
6+
#
7+
# ******** NOTE ********
8+
# We have attempted to detect the languages in your repository. Please check
9+
# the `language` matrix defined below to confirm you have the correct set of
10+
# supported CodeQL languages.
11+
#
12+
name: 'CodeQL'
13+
14+
on:
15+
push:
16+
branches: [main]
17+
pull_request:
18+
# The branches below must be a subset of the branches above
19+
branches: [main]
20+
schedule:
21+
- cron: '15 16 * * 2'
22+
23+
jobs:
24+
analyze:
25+
name: Analyze
26+
runs-on: ubuntu-latest
27+
permissions:
28+
actions: read
29+
contents: read
30+
security-events: write
31+
32+
strategy:
33+
fail-fast: false
34+
matrix:
35+
language: ['javascript', 'python']
36+
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
37+
# Learn more about CodeQL language support at https://git.io/codeql-language-support
38+
39+
steps:
40+
- name: Checkout repository
41+
uses: actions/checkout@v3
42+
43+
# Initializes the CodeQL tools for scanning.
44+
- name: Initialize CodeQL
45+
uses: github/codeql-action/init@v2
46+
with:
47+
languages: ${{ matrix.language }}
48+
# If you wish to specify custom queries, you can do so here or in a config file.
49+
# By default, queries listed here will override any specified in a config file.
50+
# Prefix the list here with "+" to use these queries and those in the config file.
51+
# queries: ./path/to/local/query, your-org/your-repo/queries@main
52+
53+
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
54+
# If this step fails, then you should remove it and run the build manually (see below)
55+
- name: Autobuild
56+
uses: github/codeql-action/autobuild@v2
57+
58+
# ℹ️ Command-line programs to run using the OS shell.
59+
# 📚 https://git.io/JvXDl
60+
61+
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
62+
# and modify them (or add more) to build your code if your project
63+
# uses a compiled language
64+
65+
#- run: |
66+
# make bootstrap
67+
# make release
68+
69+
- name: Perform CodeQL Analysis
70+
uses: github/codeql-action/analyze@v2

.github/workflows/issue-labels.yml

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Issue labels
2+
3+
on:
4+
issues:
5+
types: [opened, reopened]
6+
7+
permissions:
8+
issues: write
9+
10+
jobs:
11+
# From https://github.com/marketplace/actions/github-script#apply-a-label-to-an-issue.
12+
add-triage-label:
13+
name: "Add 'triage-needed'"
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/github-script@v6
17+
with:
18+
github-token: ${{ secrets.GITHUB_TOKEN }}
19+
script: |
20+
const result = await github.rest.issues.listLabelsOnIssue({
21+
owner: context.repo.owner,
22+
repo: context.repo.repo,
23+
issue_number: context.issue.number,
24+
})
25+
const labels = result.data.map((label) => label.name)
26+
const hasNeeds = labels.some((label) => label.startsWith('needs'))
27+
28+
if (!hasNeeds) {
29+
console.log('This issue is not labeled with a "needs __" label, add the "triage-needed" label.')
30+
31+
github.rest.issues.addLabels({
32+
owner: context.repo.owner,
33+
repo: context.repo.repo,
34+
issue_number: context.issue.number,
35+
labels: ['triage-needed']
36+
})
37+
} else {
38+
console.log('This issue already has a "needs __" label, do not add the "triage-needed" label.')
39+
}

0 commit comments

Comments
 (0)