├── .github ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── ci.yml ├── .gitignore ├── .nvmrc ├── .prettierignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── __tests__ └── utils.spec.js ├── action.yml ├── babel.config.js ├── dist └── index.js ├── docs ├── pr.png ├── push.png └── updating_message.gif ├── fixtures.js ├── index.js ├── package.json ├── prettier.config.js ├── src └── utils.js └── yarn.lock /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ## Purpose 2 | 3 | ## Important Changes 4 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxmedia/github-action-slack-notify-build/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | yarn-error.log 3 | .vscode 4 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 16.16.0 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist/*.js 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxmedia/github-action-slack-notify-build/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxmedia/github-action-slack-notify-build/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxmedia/github-action-slack-notify-build/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxmedia/github-action-slack-notify-build/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/utils.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxmedia/github-action-slack-notify-build/HEAD/__tests__/utils.spec.js -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxmedia/github-action-slack-notify-build/HEAD/action.yml -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxmedia/github-action-slack-notify-build/HEAD/babel.config.js -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxmedia/github-action-slack-notify-build/HEAD/dist/index.js -------------------------------------------------------------------------------- /docs/pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxmedia/github-action-slack-notify-build/HEAD/docs/pr.png -------------------------------------------------------------------------------- /docs/push.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxmedia/github-action-slack-notify-build/HEAD/docs/push.png -------------------------------------------------------------------------------- /docs/updating_message.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxmedia/github-action-slack-notify-build/HEAD/docs/updating_message.gif -------------------------------------------------------------------------------- /fixtures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxmedia/github-action-slack-notify-build/HEAD/fixtures.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxmedia/github-action-slack-notify-build/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxmedia/github-action-slack-notify-build/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxmedia/github-action-slack-notify-build/HEAD/prettier.config.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxmedia/github-action-slack-notify-build/HEAD/src/utils.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxmedia/github-action-slack-notify-build/HEAD/yarn.lock --------------------------------------------------------------------------------