Skip to content

Commit a5663e2

Browse files
committed
feat(repo): Added readme-format to pre-commit hook
1 parent 20a7862 commit a5663e2

File tree

509 files changed

+61198
-19920
lines changed

Some content is hidden

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

509 files changed

+61198
-19920
lines changed

.github/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Steps to contribute
44

5-
If you want to make a small change, go ahead and raise a pull request, otherwise follow these steps:
5+
If you want to make a small change, go ahead and raise a pull request, otherwise follow these steps:
66

77
1. View the [Issues](https://github.com/sullivanpj/open-system/issues) page to see a To-Do list of things to be implemented.
88
2. Raise an issue or comment on an existing issue with what you want to contribute if one does not already exist.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ Thank you good citizen for your hard work! Please provide the below details desc
66

77
**Note:** Please read the [contributing guide](https://github.com/sullivanpj/open-system/blob/main/.github/CONTRIBUTING.md) before raising a pull request.
88

9-
10-
119
## Pull request type
1210

1311
<!-- Please try to limit your pull request to one type, submit multiple pull requests if needed. -->
@@ -38,4 +36,4 @@ Issue Number: N/A
3836

3937
## Other information
4038

41-
<!-- Any other information that is important to this PR such as screenshots of how the component looks before and after the change. -->
39+
<!-- Any other information that is important to this PR such as screenshots of how the component looks before and after the change. -->

.github/codecov.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ parsers:
2323
comment:
2424
layout: "reach, diff, flags, files"
2525
behavior: default
26-
require_changes: false # if true: only post the comment if coverage changes
27-
require_base: false # [yes :: must have a base report to post]
28-
require_head: true # [yes :: must have a head report to post]
26+
require_changes: false # if true: only post the comment if coverage changes
27+
require_base: false # [yes :: must have a base report to post]
28+
require_head: true # [yes :: must have a head report to post]
2929
branches: ["main", "master"]

.github/labels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,4 @@
7575
description: "This PR causes a major version bump in the version number."
7676
- name: "minor"
7777
color: 0e8a16
78-
description: "This PR causes a minor version bump in the version number."
78+
description: "This PR causes a minor version bump in the version number."

.github/renovate.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
"schedule:weekly",
66
":semanticCommits",
77
":automergePatch",
8-
":noUnscheduledUpdates", ":pinAllExceptPeerDependencies"
8+
":noUnscheduledUpdates",
9+
":pinAllExceptPeerDependencies"
910
],
1011
"semanticCommits": "enabled",
1112
"reviewers": ["@sullivanpj"],

.github/stale.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ daysUntilClose: 7
99

1010
# Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable
1111
exemptLabels: []
12-
12+
1313
# Set to true to ignore issues in a project (defaults to false)
1414
exemptProjects: false
1515

@@ -34,7 +34,6 @@ markComment: >
3434

3535
# Limit the number of actions per hour, from 1-30. Default is 30
3636
limitPerRun: 30
37-
3837
# Limit to only `issues` or `pulls`
3938
# only: issues
4039

@@ -48,4 +47,4 @@ limitPerRun: 30
4847

4948
# issues:
5049
# exemptLabels:
51-
# - confirmed
50+
# - confirmed

.github/workflows/ci.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
name: "CI/CD"
22

3-
43
on:
54
workflow_dispatch:
65
inputs:
@@ -9,9 +8,9 @@ on:
98
required: false
109
push:
1110
branches:
12-
- 'main'
13-
- 'alpha'
14-
- 'beta'
11+
- "main"
12+
- "alpha"
13+
- "beta"
1514

1615
env:
1716
NX_DAEMON: false
@@ -22,7 +21,7 @@ env:
2221
jobs:
2322
build-and-release:
2423
if: github.repository == 'sullivanpj/open-system' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/alpha' || github.ref == 'refs/heads/beta')
25-
name: 'Build & Release'
24+
name: "Build & Release"
2625
runs-on: ubuntu-latest
2726
steps:
2827
- uses: actions/checkout@v3

.github/workflows/codeql.yml

Lines changed: 31 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ name: "CodeQL"
1313

1414
on:
1515
push:
16-
branches: [ "main" ]
16+
branches: ["main"]
1717
pull_request:
1818
# The branches below must be a subset of the branches above
19-
branches: [ "main" ]
19+
branches: ["main"]
2020
schedule:
21-
- cron: '43 13 * * 2'
21+
- cron: "43 13 * * 2"
2222

2323
jobs:
2424
analyze:
@@ -32,45 +32,44 @@ jobs:
3232
strategy:
3333
fail-fast: false
3434
matrix:
35-
language: [ 'javascript' ]
35+
language: ["javascript"]
3636
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
3737
# Use only 'java' to analyze code written in Java, Kotlin or both
3838
# Use only 'javascript' to analyze code written in JavaScript, TypeScript or both
3939
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
4040

4141
steps:
42-
- name: Checkout repository
43-
uses: actions/checkout@v3
42+
- name: Checkout repository
43+
uses: actions/checkout@v3
4444

45-
# Initializes the CodeQL tools for scanning.
46-
- name: Initialize CodeQL
47-
uses: github/codeql-action/init@v2
48-
with:
49-
languages: ${{ matrix.language }}
50-
# If you wish to specify custom queries, you can do so here or in a config file.
51-
# By default, queries listed here will override any specified in a config file.
52-
# Prefix the list here with "+" to use these queries and those in the config file.
45+
# Initializes the CodeQL tools for scanning.
46+
- name: Initialize CodeQL
47+
uses: github/codeql-action/init@v2
48+
with:
49+
languages: ${{ matrix.language }}
50+
# If you wish to specify custom queries, you can do so here or in a config file.
51+
# By default, queries listed here will override any specified in a config file.
52+
# Prefix the list here with "+" to use these queries and those in the config file.
5353

54-
# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
55-
# queries: security-extended,security-and-quality
54+
# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
55+
# queries: security-extended,security-and-quality
5656

57+
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java).
58+
# If this step fails, then you should remove it and run the build manually (see below)
59+
- name: Autobuild
60+
uses: github/codeql-action/autobuild@v2
5761

58-
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java).
59-
# If this step fails, then you should remove it and run the build manually (see below)
60-
- name: Autobuild
61-
uses: github/codeql-action/autobuild@v2
62+
# ℹ️ Command-line programs to run using the OS shell.
63+
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
6264

63-
# ℹ️ Command-line programs to run using the OS shell.
64-
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
65+
# If the Autobuild fails above, remove it and uncomment the following three lines.
66+
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
6567

66-
# If the Autobuild fails above, remove it and uncomment the following three lines.
67-
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
68+
# - run: |
69+
# echo "Run, Build Application using script"
70+
# ./location_of_script_within_repo/buildscript.sh
6871

69-
# - run: |
70-
# echo "Run, Build Application using script"
71-
# ./location_of_script_within_repo/buildscript.sh
72-
73-
- name: Perform CodeQL Analysis
74-
uses: github/codeql-action/analyze@v2
75-
with:
76-
category: "/language:${{matrix.language}}"
72+
- name: Perform CodeQL Analysis
73+
uses: github/codeql-action/analyze@v2
74+
with:
75+
category: "/language:${{matrix.language}}"

.github/workflows/documentation.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,5 +88,3 @@ jobs:
8888

8989
- name: Release repository version
9090
run: pnpm nx run-many --target=semantic-release --parallel=false
91-
92-

.github/workflows/git-guardian.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ jobs:
1616
env:
1717
GITHUB_PUSH_BEFORE_SHA: ${{ github.event.before }}
1818
GITHUB_PUSH_BASE_SHA: ${{ github.event.base }}
19-
GITHUB_PULL_BASE_SHA: ${{ github.event.pull_request.base.sha }}
19+
GITHUB_PULL_BASE_SHA: ${{ github.event.pull_request.base.sha }}
2020
GITHUB_DEFAULT_BRANCH: ${{ github.event.repository.default_branch }}
2121
GITGUARDIAN_API_KEY: ${{ secrets.GITGUARDIAN_API_KEY }}

0 commit comments

Comments
 (0)