refactor and fix issue where growth dataset is not calculated when hi… #173
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: Send Slack notifications | |
on: | |
push: | |
branches: | |
- main | |
- 'feature/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Send Slack deployment notifications | |
id: cf-pages | |
uses: arddluma/cloudflare-pages-slack-notification@v3.1 | |
with: | |
accountEmail: ${{ secrets.CF_ACCOUNT_EMAIL }} | |
apiKey: ${{ secrets.CF_API_KEY }} | |
accountId: ${{ secrets.CF_ACC_ID }} | |
project: ${{ secrets.CF_PROJECT }} | |
githubToken: ${{ secrets.GITHUB_TOKEN }} | |
slackWebHook: ${{ secrets.SLACK_WEBHOOK }} |