chore: sync all changes to Gitea
Some checks failed
Deploy to Phoenix / deploy (push) Has been cancelled
Some checks failed
Deploy to Phoenix / deploy (push) Has been cancelled
- Config, docs, scripts, and backup manifests - Submodule refs unchanged (m = modified content in submodules) Made-with: Cursor
This commit is contained in:
7
.github/workflows/validate-config.yml
vendored
7
.github/workflows/validate-config.yml
vendored
@@ -9,12 +9,16 @@ on:
|
||||
- 'scripts/verify/run-all-validation.sh'
|
||||
- 'scripts/run-completable-tasks-from-anywhere.sh'
|
||||
- '.github/workflows/validate-config.yml'
|
||||
- 'token-lists/**'
|
||||
- 'explorer-monorepo/backend/api/rest/config/metamask/**'
|
||||
push:
|
||||
branches: [master]
|
||||
paths:
|
||||
- 'config/**'
|
||||
- 'scripts/validation/**'
|
||||
- '.github/workflows/validate-config.yml'
|
||||
- 'token-lists/**'
|
||||
- 'explorer-monorepo/backend/api/rest/config/metamask/**'
|
||||
|
||||
jobs:
|
||||
validate:
|
||||
@@ -29,3 +33,6 @@ jobs:
|
||||
|
||||
- name: Completable tasks (dry-run)
|
||||
run: bash scripts/run-completable-tasks-from-anywhere.sh --dry-run
|
||||
|
||||
- name: Shellcheck (optional)
|
||||
run: bash scripts/verify/run-shellcheck.sh --optional
|
||||
|
||||
33
.github/workflows/validate-omnl-rail.yml
vendored
Normal file
33
.github/workflows/validate-omnl-rail.yml
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
# Validate OMNL operator rail: .gitignore, resolve_ids pattern, shellcheck on scripts/omnl.
|
||||
name: Validate OMNL Rail
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
paths:
|
||||
- 'scripts/omnl/**'
|
||||
- '.gitignore'
|
||||
- '.github/workflows/validate-omnl-rail.yml'
|
||||
push:
|
||||
branches: [master]
|
||||
paths:
|
||||
- 'scripts/omnl/**'
|
||||
- '.github/workflows/validate-omnl-rail.yml'
|
||||
|
||||
jobs:
|
||||
validate-omnl-rail:
|
||||
name: OMNL rail checks
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: .gitignore and resolve_ids
|
||||
run: bash scripts/omnl/validate-rail.sh
|
||||
|
||||
- name: Shellcheck (optional)
|
||||
run: |
|
||||
if command -v shellcheck >/dev/null 2>&1; then
|
||||
shellcheck -x scripts/omnl/*.sh || true
|
||||
else
|
||||
echo "Shellcheck not installed; skipping."
|
||||
fi
|
||||
Reference in New Issue
Block a user