├── .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 │ ├── renovate-config-validator.yaml │ ├── test-action.yaml │ ├── test.yaml │ ├── typos.yaml │ ├── watch-star.yaml │ └── workflow_call_test.yaml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── _typos.toml ├── action.yaml ├── aqua ├── aqua-checksums.json ├── aqua.yaml └── imports │ ├── nllint.yaml │ ├── pinact.yaml │ └── typos.yaml ├── renovate.json5 └── server └── action.yaml /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/approve-pr-action/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/approve-pr-action/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/approve-pr-action/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/general.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/approve-pr-action/HEAD/.github/ISSUE_TEMPLATE/general.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/approve-pr-action/HEAD/.github/ISSUE_TEMPLATE/question.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/support-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/approve-pr-action/HEAD/.github/ISSUE_TEMPLATE/support-request.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/approve-pr-action/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/actionlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/approve-pr-action/HEAD/.github/workflows/actionlint.yaml -------------------------------------------------------------------------------- /.github/workflows/autofix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/approve-pr-action/HEAD/.github/workflows/autofix.yaml -------------------------------------------------------------------------------- /.github/workflows/check-commit-signing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/approve-pr-action/HEAD/.github/workflows/check-commit-signing.yaml -------------------------------------------------------------------------------- /.github/workflows/renovate-config-validator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/approve-pr-action/HEAD/.github/workflows/renovate-config-validator.yaml -------------------------------------------------------------------------------- /.github/workflows/test-action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/approve-pr-action/HEAD/.github/workflows/test-action.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/approve-pr-action/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.github/workflows/typos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/approve-pr-action/HEAD/.github/workflows/typos.yaml -------------------------------------------------------------------------------- /.github/workflows/watch-star.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/approve-pr-action/HEAD/.github/workflows/watch-star.yaml -------------------------------------------------------------------------------- /.github/workflows/workflow_call_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/approve-pr-action/HEAD/.github/workflows/workflow_call_test.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/approve-pr-action/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/approve-pr-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/approve-pr-action/HEAD/README.md -------------------------------------------------------------------------------- /_typos.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/approve-pr-action/HEAD/_typos.toml -------------------------------------------------------------------------------- /action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/approve-pr-action/HEAD/action.yaml -------------------------------------------------------------------------------- /aqua/aqua-checksums.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/approve-pr-action/HEAD/aqua/aqua-checksums.json -------------------------------------------------------------------------------- /aqua/aqua.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/approve-pr-action/HEAD/aqua/aqua.yaml -------------------------------------------------------------------------------- /aqua/imports/nllint.yaml: -------------------------------------------------------------------------------- 1 | packages: 2 | - name: suzuki-shunsuke/nllint@v0.1.2 3 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/approve-pr-action/HEAD/renovate.json5 -------------------------------------------------------------------------------- /server/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csm-actions/approve-pr-action/HEAD/server/action.yaml --------------------------------------------------------------------------------