Provides the function of slack notification to GitHub Actions.
Перейти к файлу
839 39b9a0c6f0
Merge pull request #76 from 8398a7/issue/75
[#75] No slack notification on pull request
2020-06-27 19:25:31 +09:00
.github/workflows [#75] No slack notification on pull request 2020-06-27 19:23:37 +09:00
__tests__ allow mentioning user groups 2020-06-27 15:27:32 +05:30
docs update docs 2020-06-27 15:29:54 +05:30
src allow mentioning user groups 2020-06-27 15:27:32 +05:30
.eslintignore update template 2019-12-27 16:35:42 +09:00
.eslintrc.json [#40] Apply the type after filter 2020-02-22 23:51:23 +09:00
.gitignore update template 2019-12-27 16:35:42 +09:00
.prettierignore update template 2019-12-27 16:35:42 +09:00
.prettierrc.json update template 2019-12-27 16:35:42 +09:00
LICENSE Prepare repository 2019-08-16 00:19:52 +09:00
README.md update image 2020-06-14 15:55:50 +09:00
action.yml [#31] Add required key 2020-04-05 17:36:09 +09:00
jest.config.js [#66] upgrade jest 2020-06-12 22:39:06 +09:00
package-lock.json bump 3.3.0 2020-06-27 19:12:38 +09:00
package.json bump 3.3.0 2020-06-27 19:12:38 +09:00
tsconfig.json update template 2019-12-27 16:35:42 +09:00

README.md

action-slack

codecov

steps:
  - uses: 8398a7/action-slack@v3
    with:
      status: ${{ job.status }}
      fields: repo,message,commit,author,action,eventName,ref,workflow,job,took # selectable (default: repo,message)
    env:
      GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # optional
      SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} # required
    if: always() # Pick up events even if the job fails or is canceled.
success