├── .gitignore ├── LICENSE.md ├── README.md ├── package.json ├── src ├── CodePipelineEvent.ts └── index.ts ├── tsconfig.json ├── tslint.json └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giftbit/codepipeline-github-action/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giftbit/codepipeline-github-action/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giftbit/codepipeline-github-action/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giftbit/codepipeline-github-action/HEAD/package.json -------------------------------------------------------------------------------- /src/CodePipelineEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giftbit/codepipeline-github-action/HEAD/src/CodePipelineEvent.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giftbit/codepipeline-github-action/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giftbit/codepipeline-github-action/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giftbit/codepipeline-github-action/HEAD/tslint.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giftbit/codepipeline-github-action/HEAD/webpack.config.js --------------------------------------------------------------------------------