Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
ci: replace Super-Linter with reusable quality and security workflows, pin reusable ECS workflow, group Dependabot updates, and refresh linter and Gitleaks configs.#12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,2 @@ | ||
| [codespell] | ||
| skip = */tests/*,tests/**,*/composer.lock,*/composer.json,*/package-lock.json,*/dist/*,*/node_modules/* | ||
| skip = ./.git,.claude/*,.codex/*,.vscode/*,code_coverage/*,composer.lock,runtime/*,scaffold-lock.json,vendor/*,*/tests/*,tests/**,*/composer.lock,*/composer.json,*/package-lock.json,*/dist/*,*/node_modules/* |
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| --- | ||
| on: | ||
| - pull_request | ||
| - push | ||
| name: quality | ||
| permissions: | ||
| contents: read | ||
| jobs: | ||
| quality: | ||
| uses: yii2-framework/actions/.github/workflows/quality.yml@e02758a41a2a811fb3e706735192979171b2260d # v2.0.1 | ||
| permissions: | ||
| contents: read | ||
| with: | ||
| codespell-config: .github/linters/.codespellrc | ||
| editorconfig-checker-config: .github/linters/.editorconfig-checker.json | ||
| markdownlint-config: .github/linters/.markdown-lint.yml | ||
| prettier-config: .prettierrc.json | ||
| prettier-ignore-path: .prettierignore | ||
| yamllint-targets: .github |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| --- | ||
| on: | ||
| - pull_request | ||
| - push | ||
| name: security | ||
| permissions: | ||
| contents: read | ||
| jobs: | ||
| security: | ||
| uses: yii2-framework/actions/.github/workflows/security.yml@e02758a41a2a811fb3e706735192979171b2260d # v2.0.1 | ||
| permissions: | ||
| contents: read | ||
| with: | ||
| gitleaks-config: .github/linters/.gitleaks.toml | ||
| secrets: | ||
| GITLEAKS_LICENSE: ${{ secrets.GITLEAKS_LICENSE }} |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,21 +1,21 @@ | ||
| **/*.min.css | ||
| **/*.min.js | ||
| # Local agent, editor, coverage, and generated runtime state. | ||
| .claude/** | ||
| .codex/** | ||
| .vscode/** | ||
| code_coverage/** | ||
| runtime/** | ||
| # Vite-built bundles (committed dist/) and lockfiles. | ||
| **/dist/** | ||
| **/node_modules/** | ||
| **/package-lock.json | ||
| # Dependencies. | ||
| vendor/** | ||
| # Yii AssetManager publishes a hashed copy of src/assets/ under tests/runtime/ | ||
| # whenever phpunit runs; the tree is regenerated on every test run, never | ||
| # authored, and ignored by git already. | ||
| tests/runtime/** | ||
| # Dependency lockfile ignored by git. | ||
| composer.lock | ||
| # License texts ship verbatim — never auto-formatted. | ||
| # License texts ship verbatim. | ||
| **/LICENSE* | ||
| # Tool configs maintained by hand to keep their array order meaningful. | ||
| # Tool config maintained by hand to keep array order meaningful. | ||
| composer-require-checker.json | ||
| # Auto-generated by yii2-extensions/scaffold; never hand-edited. | ||
| # Auto-generated by yii2-extensions/scaffold. | ||
| scaffold-lock.json |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.