├── .github ├── dependabot.yml └── workflows │ ├── echo.yml │ ├── notify.yml │ ├── release.yml │ └── test.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── action.yml ├── dist ├── index.js └── main.cjs ├── main.js ├── package.json └── test ├── new-release-error ├── event.json └── test.js ├── new-release-with-default-dispatch-event-name ├── event.json └── test.js └── new-release ├── event.json └── test.js /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr2m/release-notifier-action/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/echo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr2m/release-notifier-action/HEAD/.github/workflows/echo.yml -------------------------------------------------------------------------------- /.github/workflows/notify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr2m/release-notifier-action/HEAD/.github/workflows/notify.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr2m/release-notifier-action/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr2m/release-notifier-action/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .nyc_output 2 | dist 3 | node_modules -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr2m/release-notifier-action/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr2m/release-notifier-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr2m/release-notifier-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr2m/release-notifier-action/HEAD/action.yml -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr2m/release-notifier-action/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/main.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr2m/release-notifier-action/HEAD/dist/main.cjs -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr2m/release-notifier-action/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr2m/release-notifier-action/HEAD/package.json -------------------------------------------------------------------------------- /test/new-release-error/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr2m/release-notifier-action/HEAD/test/new-release-error/event.json -------------------------------------------------------------------------------- /test/new-release-error/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr2m/release-notifier-action/HEAD/test/new-release-error/test.js -------------------------------------------------------------------------------- /test/new-release-with-default-dispatch-event-name/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr2m/release-notifier-action/HEAD/test/new-release-with-default-dispatch-event-name/event.json -------------------------------------------------------------------------------- /test/new-release-with-default-dispatch-event-name/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr2m/release-notifier-action/HEAD/test/new-release-with-default-dispatch-event-name/test.js -------------------------------------------------------------------------------- /test/new-release/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr2m/release-notifier-action/HEAD/test/new-release/event.json -------------------------------------------------------------------------------- /test/new-release/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr2m/release-notifier-action/HEAD/test/new-release/test.js --------------------------------------------------------------------------------