Create top-level types.go
to define types shared across packages
#53
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Notify Discord | |
on: | |
release: | |
issues: | |
issue_comment: | |
discussion: | |
discussion_comment: | |
push: | |
branches: | |
- notify # for testing purposes | |
- dev | |
- main | |
jobs: | |
notify: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Actions for Discord | |
env: | |
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }} | |
uses: Ilshidur/action-discord@0.3.2 |