Skip to content

Commit 7d5c872

Browse files
committed
ci: custom open
1 parent ae2f4a5 commit 7d5c872

File tree

16 files changed

+922
-335
lines changed

16 files changed

+922
-335
lines changed

.github/workflows/branch-name.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
---
2-
name: 'Assert Branch Naming Convention'
3-
on: pull_request
1+
# ---
2+
# name: 'Assert Branch Naming Convention'
3+
# on: pull_request
44

5-
jobs:
6-
branch-naming-rules:
7-
runs-on: ubuntu-latest
8-
steps:
9-
- uses: deepakputhraya/action-branch-name@master
10-
with:
11-
regex: '([a-z])+\/([a-z0-9.-])+'
12-
allowed_prefixes: 'feat,fix,build,chore,ci,docs,style,refactor,perf,test,revert,release'
13-
ignore: main
14-
min_length: 5
15-
max_length: 50
5+
# jobs:
6+
# branch-naming-rules:
7+
# runs-on: ubuntu-latest
8+
# steps:
9+
# - uses: deepakputhraya/action-branch-name@master
10+
# with:
11+
# regex: '([a-z])+\/([a-z0-9.-])+'
12+
# allowed_prefixes: 'feat,fix,build,chore,ci,docs,style,refactor,perf,test,revert,release'
13+
# ignore: main
14+
# min_length: 5
15+
# max_length: 50

.github/workflows/commitlint.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
---
2-
name: Lint Commit Messages
3-
on: [pull_request]
1+
# ---
2+
# name: Lint Commit Messages
3+
# on: [pull_request]
44

5-
jobs:
6-
commitlint:
7-
runs-on: ubuntu-latest
8-
steps:
9-
- uses: actions/checkout@v3
10-
with:
11-
fetch-depth: 0
12-
- uses: wagoid/commitlint-github-action@v4
5+
# jobs:
6+
# commitlint:
7+
# runs-on: ubuntu-latest
8+
# steps:
9+
# - uses: actions/checkout@v3
10+
# with:
11+
# fetch-depth: 0
12+
# - uses: wagoid/commitlint-github-action@v4

.github/workflows/diff.yml

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
1-
---
2-
name: "Check LICENSE/README/CHANGELOG"
3-
on: [pull_request]
1+
# ---
2+
# name: "Check LICENSE/README/CHANGELOG"
3+
# on: [pull_request]
44

5-
jobs:
6-
diff:
7-
runs-on: ubuntu-latest
8-
steps:
9-
- uses: actions/checkout@v1
10-
- name: Check that the LICENSE files are the exact same
11-
uses: LouisBrunner/[email protected]
12-
with:
13-
old: LICENSE.md
14-
new: src/Packages/Passport/LICENSE.md
15-
mode: strict
16-
tolerance: same
17-
output: LICENSE-diff.txt
18-
- name: Check that the CHANGELOG files are the exact same
19-
uses: LouisBrunner/[email protected]
20-
with:
21-
old: CHANGELOG.md
22-
new: src/Packages/Passport/CHANGELOG.md
23-
mode: strict
24-
tolerance: same
25-
output: changelog-diff.txt
5+
# jobs:
6+
# diff:
7+
# runs-on: ubuntu-latest
8+
# steps:
9+
# - uses: actions/checkout@v1
10+
# - name: Check that the LICENSE files are the exact same
11+
# uses: LouisBrunner/[email protected]
12+
# with:
13+
# old: LICENSE.md
14+
# new: src/Packages/Passport/LICENSE.md
15+
# mode: strict
16+
# tolerance: same
17+
# output: LICENSE-diff.txt
18+
# - name: Check that the CHANGELOG files are the exact same
19+
# uses: LouisBrunner/[email protected]
20+
# with:
21+
# old: CHANGELOG.md
22+
# new: src/Packages/Passport/CHANGELOG.md
23+
# mode: strict
24+
# tolerance: same
25+
# output: changelog-diff.txt

.github/workflows/linter.yml

Lines changed: 59 additions & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -1,64 +1,64 @@
1-
---
2-
#################################
3-
#################################
4-
## Super Linter GitHub Actions ##
5-
#################################
6-
#################################
7-
name: Lint Code Base
1+
# ---
2+
# #################################
3+
# #################################
4+
# ## Super Linter GitHub Actions ##
5+
# #################################
6+
# #################################
7+
# name: Lint Code Base
88

9-
#############################
10-
# Start the job on all push #
11-
#############################
12-
on:
13-
push:
14-
branches-ignore: [main]
15-
# Remove the line above to run when pushing to master
16-
pull_request:
17-
branches: [main]
9+
# #############################
10+
# # Start the job on all push #
11+
# #############################
12+
# on:
13+
# push:
14+
# branches-ignore: [main]
15+
# # Remove the line above to run when pushing to master
16+
# pull_request:
17+
# branches: [main]
1818

19-
###############
20-
# Set the Job #
21-
###############
22-
jobs:
23-
build:
24-
# Name the Job
25-
name: Lint Code Base
26-
# Set the agent to run on
27-
runs-on: ubuntu-latest
19+
# ###############
20+
# # Set the Job #
21+
# ###############
22+
# jobs:
23+
# build:
24+
# # Name the Job
25+
# name: Lint Code Base
26+
# # Set the agent to run on
27+
# runs-on: ubuntu-latest
2828

29-
############################################
30-
# Grant status permission for MULTI_STATUS #
31-
############################################
32-
permissions:
33-
contents: read
34-
packages: read
35-
statuses: write
29+
# ############################################
30+
# # Grant status permission for MULTI_STATUS #
31+
# ############################################
32+
# permissions:
33+
# contents: read
34+
# packages: read
35+
# statuses: write
3636

37-
##################
38-
# Load all steps #
39-
##################
40-
steps:
41-
##########################
42-
# Checkout the code base #
43-
##########################
44-
- name: Checkout Code
45-
uses: actions/checkout@v3
46-
with:
47-
# Full git history is needed to get a proper
48-
# list of changed files within `super-linter`
49-
fetch-depth: 0
37+
# ##################
38+
# # Load all steps #
39+
# ##################
40+
# steps:
41+
# ##########################
42+
# # Checkout the code base #
43+
# ##########################
44+
# - name: Checkout Code
45+
# uses: actions/checkout@v3
46+
# with:
47+
# # Full git history is needed to get a proper
48+
# # list of changed files within `super-linter`
49+
# fetch-depth: 0
5050

51-
################################
52-
# Run Linter against code base #
53-
################################
54-
- name: Lint Code Base
55-
uses: github/super-linter@v5
56-
env:
57-
VALIDATE_ALL_CODEBASE: true
58-
DEFAULT_BRANCH: main
59-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
60-
FILTER_REGEX_EXCLUDE: (.*src/Packages/Passport/Runtime/ThirdParty/.*|.*src/Packages/Passport/Runtime/Resources/.*|.*Plugins/.*|.*src/Packages/Passport/Runtime/Assets/ImmutableAndroid.androidlib/.*|.*src/Packages/Orderbook|.*src/Packages/ZkEvmApi/.*|.*sample|.*src/Packages/Passport/WebGLTemplates~|.*.github/workflows)
61-
VALIDATE_MARKDOWN: false
62-
VALIDATE_GITLEAKS: false
63-
VALIDATE_JSCPD: false
64-
VALIDATE_SHELL_SHFMT: false
51+
# ################################
52+
# # Run Linter against code base #
53+
# ################################
54+
# - name: Lint Code Base
55+
# uses: github/super-linter@v5
56+
# env:
57+
# VALIDATE_ALL_CODEBASE: true
58+
# DEFAULT_BRANCH: main
59+
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
60+
# FILTER_REGEX_EXCLUDE: (.*src/Packages/Passport/Runtime/ThirdParty/.*|.*src/Packages/Passport/Runtime/Resources/.*|.*Plugins/.*|.*src/Packages/Passport/Runtime/Assets/ImmutableAndroid.androidlib/.*|.*src/Packages/Orderbook|.*src/Packages/ZkEvmApi/.*|.*sample|.*src/Packages/Passport/WebGLTemplates~|.*.github/workflows)
61+
# VALIDATE_MARKDOWN: false
62+
# VALIDATE_GITLEAKS: false
63+
# VALIDATE_JSCPD: false
64+
# VALIDATE_SHELL_SHFMT: false

0 commit comments

Comments
 (0)