├── .eslintignore ├── .eslintrc.json ├── .github └── workflows │ └── test.yaml ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── action.yml ├── cleanup ├── README.md ├── action.yml └── index.js ├── converge ├── README.md ├── action.yml └── index.js ├── dismiss ├── README.md ├── action.yml └── index.js ├── install ├── README.md ├── action.yml └── index.js ├── pack.sh ├── package.json ├── run ├── README.md ├── action.yml └── index.js ├── src ├── build.ts ├── cleanup.ts ├── common.ts ├── converge.ts ├── dismiss.ts ├── install.ts ├── manager.ts ├── run.ts └── werf.ts └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | lib/ 3 | node_modules/ -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/actions/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/actions/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/actions/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | lib/ 3 | node_modules/ -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/actions/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/actions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/actions/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/actions/HEAD/action.yml -------------------------------------------------------------------------------- /cleanup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/actions/HEAD/cleanup/README.md -------------------------------------------------------------------------------- /cleanup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/actions/HEAD/cleanup/action.yml -------------------------------------------------------------------------------- /cleanup/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/actions/HEAD/cleanup/index.js -------------------------------------------------------------------------------- /converge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/actions/HEAD/converge/README.md -------------------------------------------------------------------------------- /converge/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/actions/HEAD/converge/action.yml -------------------------------------------------------------------------------- /converge/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/actions/HEAD/converge/index.js -------------------------------------------------------------------------------- /dismiss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/actions/HEAD/dismiss/README.md -------------------------------------------------------------------------------- /dismiss/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/actions/HEAD/dismiss/action.yml -------------------------------------------------------------------------------- /dismiss/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/actions/HEAD/dismiss/index.js -------------------------------------------------------------------------------- /install/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/actions/HEAD/install/README.md -------------------------------------------------------------------------------- /install/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/actions/HEAD/install/action.yml -------------------------------------------------------------------------------- /install/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/actions/HEAD/install/index.js -------------------------------------------------------------------------------- /pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/actions/HEAD/pack.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/actions/HEAD/package.json -------------------------------------------------------------------------------- /run/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/actions/HEAD/run/README.md -------------------------------------------------------------------------------- /run/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/actions/HEAD/run/action.yml -------------------------------------------------------------------------------- /run/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/actions/HEAD/run/index.js -------------------------------------------------------------------------------- /src/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/actions/HEAD/src/build.ts -------------------------------------------------------------------------------- /src/cleanup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/actions/HEAD/src/cleanup.ts -------------------------------------------------------------------------------- /src/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/actions/HEAD/src/common.ts -------------------------------------------------------------------------------- /src/converge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/actions/HEAD/src/converge.ts -------------------------------------------------------------------------------- /src/dismiss.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/actions/HEAD/src/dismiss.ts -------------------------------------------------------------------------------- /src/install.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/actions/HEAD/src/install.ts -------------------------------------------------------------------------------- /src/manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/actions/HEAD/src/manager.ts -------------------------------------------------------------------------------- /src/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/actions/HEAD/src/run.ts -------------------------------------------------------------------------------- /src/werf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/actions/HEAD/src/werf.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/actions/HEAD/tsconfig.json --------------------------------------------------------------------------------