├── .codacy.yml ├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── actions_release.yml │ ├── audit_package.yml │ ├── auto_cherry_pick.yml │ ├── codeql.yml │ ├── dependency-review.yml │ ├── guarddog.yml │ ├── matrix-example.yml │ ├── multi-job-example.yml │ ├── scorecards.yml │ ├── test.yml │ └── workflow-run-example.yml ├── .gitignore ├── .gitmodules ├── .nvmrc ├── .pre-commit-config.yaml ├── .prettierignore ├── .prettierrc.json ├── .whitesource ├── LICENSE ├── README.md ├── SECURITY.md ├── action.yml ├── dist ├── index.js ├── index.js.map ├── licenses.txt └── sourcemap-register.js ├── jest.config.js ├── jest └── setupEnv.cjs ├── package.json ├── src ├── __tests__ │ ├── __snapshots__ │ │ └── inputs.test.ts.snap │ ├── inputs.test.ts │ └── utils.test.ts ├── changedFiles.ts ├── changedFilesOutput.ts ├── commitSha.ts ├── constant.ts ├── env.ts ├── inputs.ts ├── main.ts └── utils.ts ├── test ├── [test new].txt ├── changed-files-list.txt ├── changed-files.yml ├── demo │ └── test │ │ └── test.txt ├── new.md ├── test new 1.txt ├── test new.txt ├── test rename-1.txt ├── test rename-2.txt ├── test-è.txt ├── test.txt └── test2 │ ├── test.txt │ └── test3 │ ├── new.txt │ ├── new2.txt │ └── test4 │ └── test.txt ├── tsconfig.json └── yarn.lock /.codacy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/.codacy.yml -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | lib/ 3 | node_modules/ 4 | jest.config.js 5 | coverage/ -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | dist/** -diff linguist-generated=true -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/actions_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/.github/workflows/actions_release.yml -------------------------------------------------------------------------------- /.github/workflows/audit_package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/.github/workflows/audit_package.yml -------------------------------------------------------------------------------- /.github/workflows/auto_cherry_pick.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/.github/workflows/auto_cherry_pick.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/guarddog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/.github/workflows/guarddog.yml -------------------------------------------------------------------------------- /.github/workflows/matrix-example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/.github/workflows/matrix-example.yml -------------------------------------------------------------------------------- /.github/workflows/multi-job-example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/.github/workflows/multi-job-example.yml -------------------------------------------------------------------------------- /.github/workflows/scorecards.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/.github/workflows/scorecards.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/workflow-run-example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/.github/workflows/workflow-run-example.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/.gitmodules -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | lib/ 3 | node_modules/ -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.whitesource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/.whitesource -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/SECURITY.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/action.yml -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/dist/index.js.map -------------------------------------------------------------------------------- /dist/licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/dist/licenses.txt -------------------------------------------------------------------------------- /dist/sourcemap-register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/dist/sourcemap-register.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/jest.config.js -------------------------------------------------------------------------------- /jest/setupEnv.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/jest/setupEnv.cjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/package.json -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/inputs.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/src/__tests__/__snapshots__/inputs.test.ts.snap -------------------------------------------------------------------------------- /src/__tests__/inputs.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/src/__tests__/inputs.test.ts -------------------------------------------------------------------------------- /src/__tests__/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/src/__tests__/utils.test.ts -------------------------------------------------------------------------------- /src/changedFiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/src/changedFiles.ts -------------------------------------------------------------------------------- /src/changedFilesOutput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/src/changedFilesOutput.ts -------------------------------------------------------------------------------- /src/commitSha.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/src/commitSha.ts -------------------------------------------------------------------------------- /src/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/src/constant.ts -------------------------------------------------------------------------------- /src/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/src/env.ts -------------------------------------------------------------------------------- /src/inputs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/src/inputs.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/src/utils.ts -------------------------------------------------------------------------------- /test/[test new].txt: -------------------------------------------------------------------------------- 1 | This is a test file 2 | -------------------------------------------------------------------------------- /test/changed-files-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/test/changed-files-list.txt -------------------------------------------------------------------------------- /test/changed-files.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/test/changed-files.yml -------------------------------------------------------------------------------- /test/demo/test/test.txt: -------------------------------------------------------------------------------- 1 | test file -------------------------------------------------------------------------------- /test/new.md: -------------------------------------------------------------------------------- 1 | This is a test markdown file 2 | -------------------------------------------------------------------------------- /test/test new 1.txt: -------------------------------------------------------------------------------- 1 | This is a test file 2 | -------------------------------------------------------------------------------- /test/test new.txt: -------------------------------------------------------------------------------- 1 | This is a test file. 2 | -------------------------------------------------------------------------------- /test/test rename-1.txt: -------------------------------------------------------------------------------- 1 | This is a test file 1. 2 | -------------------------------------------------------------------------------- /test/test rename-2.txt: -------------------------------------------------------------------------------- 1 | This is test file 2. 2 | -------------------------------------------------------------------------------- /test/test-è.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/test/test-è.txt -------------------------------------------------------------------------------- /test/test.txt: -------------------------------------------------------------------------------- 1 | This is a test file... 2 | -------------------------------------------------------------------------------- /test/test2/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/test/test2/test.txt -------------------------------------------------------------------------------- /test/test2/test3/new.txt: -------------------------------------------------------------------------------- 1 | Test file. -------------------------------------------------------------------------------- /test/test2/test3/new2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test2/test3/test4/test.txt: -------------------------------------------------------------------------------- 1 | Test file. -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-security/changed-files/HEAD/yarn.lock --------------------------------------------------------------------------------