├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ ├── feature-request.yml │ ├── general.yml │ ├── question.yml │ └── support-request.yml ├── pull_request_template.md └── workflows │ ├── actionlint.yaml │ ├── autofix.yaml │ ├── check-commit-signing.yaml │ ├── create-pr-branch.yaml │ ├── main.yaml │ ├── release.yaml │ ├── renovate-config-validator.yaml │ ├── test-action.yaml │ ├── test.yaml │ ├── typos.yaml │ ├── watch-star.yaml │ ├── wc-create-pr-branch.yaml │ └── workflow_call_test.yaml ├── .gitignore ├── .node-version ├── .npmrc ├── .pinact.yaml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── _typos.toml ├── action.yaml ├── aqua ├── aqua-checksums.json ├── aqua.yaml └── imports │ ├── nllint.yaml │ ├── node.yaml │ ├── pinact.yaml │ └── typos.yaml ├── cmdx.yaml ├── docs ├── client.md ├── codes │ └── 001.md ├── commit.md ├── config.md ├── notify.md ├── prepare.md ├── server.md └── validate-config.md ├── json-schema └── config.json ├── package.json ├── renovate.json5 ├── src ├── client.ts ├── commit.ts ├── config.ts ├── generate_schema.ts ├── index.ts ├── notify.ts ├── prepare.ts ├── run.ts └── server.ts └── tsconfig.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/general.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/.github/ISSUE_TEMPLATE/general.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/.github/ISSUE_TEMPLATE/question.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/support-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/.github/ISSUE_TEMPLATE/support-request.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/actionlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/.github/workflows/actionlint.yaml -------------------------------------------------------------------------------- /.github/workflows/autofix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/.github/workflows/autofix.yaml -------------------------------------------------------------------------------- /.github/workflows/check-commit-signing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/.github/workflows/check-commit-signing.yaml -------------------------------------------------------------------------------- /.github/workflows/create-pr-branch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/.github/workflows/create-pr-branch.yaml -------------------------------------------------------------------------------- /.github/workflows/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/.github/workflows/main.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/renovate-config-validator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/.github/workflows/renovate-config-validator.yaml -------------------------------------------------------------------------------- /.github/workflows/test-action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/.github/workflows/test-action.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.github/workflows/typos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/.github/workflows/typos.yaml -------------------------------------------------------------------------------- /.github/workflows/watch-star.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/.github/workflows/watch-star.yaml -------------------------------------------------------------------------------- /.github/workflows/wc-create-pr-branch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/.github/workflows/wc-create-pr-branch.yaml -------------------------------------------------------------------------------- /.github/workflows/workflow_call_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/.github/workflows/workflow_call_test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 20.19.6 2 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | @jsr:registry=https://npm.jsr.io 2 | -------------------------------------------------------------------------------- /.pinact.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/.pinact.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/README.md -------------------------------------------------------------------------------- /_typos.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/_typos.toml -------------------------------------------------------------------------------- /action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/action.yaml -------------------------------------------------------------------------------- /aqua/aqua-checksums.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/aqua/aqua-checksums.json -------------------------------------------------------------------------------- /aqua/aqua.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/aqua/aqua.yaml -------------------------------------------------------------------------------- /aqua/imports/nllint.yaml: -------------------------------------------------------------------------------- 1 | packages: 2 | - name: suzuki-shunsuke/nllint@v0.1.2 3 | -------------------------------------------------------------------------------- /aqua/imports/node.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/aqua/imports/node.yaml -------------------------------------------------------------------------------- /aqua/imports/pinact.yaml: -------------------------------------------------------------------------------- 1 | packages: 2 | - name: suzuki-shunsuke/pinact@v3.4.5 3 | -------------------------------------------------------------------------------- /aqua/imports/typos.yaml: -------------------------------------------------------------------------------- 1 | packages: 2 | - name: crate-ci/typos@v1.40.0 3 | -------------------------------------------------------------------------------- /cmdx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/cmdx.yaml -------------------------------------------------------------------------------- /docs/client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/docs/client.md -------------------------------------------------------------------------------- /docs/codes/001.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/docs/codes/001.md -------------------------------------------------------------------------------- /docs/commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/docs/commit.md -------------------------------------------------------------------------------- /docs/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/docs/config.md -------------------------------------------------------------------------------- /docs/notify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/docs/notify.md -------------------------------------------------------------------------------- /docs/prepare.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/docs/prepare.md -------------------------------------------------------------------------------- /docs/server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/docs/server.md -------------------------------------------------------------------------------- /docs/validate-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/docs/validate-config.md -------------------------------------------------------------------------------- /json-schema/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/json-schema/config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/renovate.json5 -------------------------------------------------------------------------------- /src/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/src/client.ts -------------------------------------------------------------------------------- /src/commit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/src/commit.ts -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/generate_schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/src/generate_schema.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/notify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/src/notify.ts -------------------------------------------------------------------------------- /src/prepare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/src/prepare.ts -------------------------------------------------------------------------------- /src/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/src/run.ts -------------------------------------------------------------------------------- /src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/src/server.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/securefix-action/HEAD/tsconfig.json --------------------------------------------------------------------------------