diff --git a/.github/workflows/notifications.yml b/.github/workflows/notifications.yml new file mode 100644 index 0000000000..fae37837e2 --- /dev/null +++ b/.github/workflows/notifications.yml @@ -0,0 +1,16 @@ +name: Send Slack notifications +on: + push +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Send Slack deployment notifications + uses: arddluma/cloudflare-pages-slack-notification@v4 + with: + apiToken: ${{ secrets.CF_API_TOKEN }} + accountId: ${{ secrets.CF_ACC_ID }} + project: ${{ secrets.CF_PROJECT }} + githubToken: ${{ secrets.GITHUB_TOKEN }} + slackWebHook: ${{ secrets.SLACK_WEBHOOK }} \ No newline at end of file