Initial commit #100
Workflow file for this run
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 Push | |
on: | |
push: #Trigger On Push | |
jobs: | |
notify-discord: | |
continue-on-error: true | |
name: Notify Discord | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Notify Discord | |
env: | |
COMMIT_FROM: ${{ github.event.push.before }} | |
COMMIT_TO: ${{ github.event.push.after }} | |
WEBHOOK: ${{ secrets.DISCORD_INTERNAL_COMMITS_WEBHOOK }} | |
run: chmod -R a+rX .github/workflows/* ; bash ./.github/workflows/discord_commit.sh -i |