├── .editorconfig ├── .github ├── FUNDING.yml └── workflows │ ├── ci.yml │ └── example.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── action.yml ├── dist └── index.js ├── package.json ├── src ├── artifact-filter.ts ├── index.ts └── utils.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyEggo/delete-artifact/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyEggo/delete-artifact/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyEggo/delete-artifact/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyEggo/delete-artifact/HEAD/.github/workflows/example.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Dependency directories 2 | node_modules 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyEggo/delete-artifact/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyEggo/delete-artifact/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyEggo/delete-artifact/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyEggo/delete-artifact/HEAD/action.yml -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyEggo/delete-artifact/HEAD/dist/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyEggo/delete-artifact/HEAD/package.json -------------------------------------------------------------------------------- /src/artifact-filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyEggo/delete-artifact/HEAD/src/artifact-filter.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyEggo/delete-artifact/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyEggo/delete-artifact/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyEggo/delete-artifact/HEAD/tsconfig.json --------------------------------------------------------------------------------