Skip to content

Commit b65d112

Browse files
authored
Merge branch 'main' into parseint-appid
2 parents 310742b + 91deba3 commit b65d112

File tree

212 files changed

+1106
-1103
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

212 files changed

+1106
-1103
lines changed

.git-template/hooks/pre-commit

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/usr/bin/env bash
2+
if [ -f .pre-commit-config.yaml ]; then
3+
echo 'pre-commit configuration detected, but `pre-commit install` was never run' 1>&2
4+
exit 1
5+
fi

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ updates:
2929
directory: "/ui"
3030
schedule:
3131
interval: "monthly"
32-
32+
3333
# Maintain node dependencies for docker-worker
3434
- package-ecosystem: "npm"
3535
directory: "/workers/docker-worker"

.github/workflows/codeql.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,3 @@ jobs:
6565

6666
- name: Perform CodeQL Analysis
6767
uses: github/codeql-action/analyze@v1
68-

.pre-commit-config.yaml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# See https://pre-commit.com for more information
2+
# See https://pre-commit.com/hooks.html for more hooks
3+
repos:
4+
- repo: https://github.com/pre-commit/pre-commit-hooks
5+
rev: v4.1.0
6+
hooks:
7+
# Trims trailing whitespace
8+
- id: trailing-whitespace
9+
# Makes sure files end in a newline and only a newline
10+
- id: end-of-file-fixer
11+
# Check for files that contain merge conflict strings
12+
- id: check-merge-conflict
13+
14+
- repo: https://github.com/marco-c/taskcluster_yml_validator
15+
rev: v0.0.8
16+
hooks:
17+
# Validates .taskcluster.yml file against possible GitHub events
18+
- id: taskcluster_yml
19+
20+
exclude: |
21+
(?x)(
22+
^generated/|
23+
^infrastructure/k8s/values.schema.json|
24+
^services/auth/src/static-scopes.json|
25+
^clients/client-rust/integration_tests/src/lib.rs|
26+
^ui/src/components/AuthConsent/__snapshots__/|
27+
^ui/src/components/TaskDetailsCard/__snapshots__/|
28+
^services/worker-manager/test/fixtures/
29+
)

0 commit comments

Comments
 (0)