Python backend for a Slack's kudos plugin.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: added slack notifications

+27 -12
+27
.github/workflows/action-push-main.yml
··· 1 + name: Action - Push master 2 + 3 + on: 4 + push: 5 + branches: 6 + - main 7 + 8 + jobs: 9 + lint_and_test: 10 + uses: ./.github/workflows/lint-and-test.yml 11 + with: 12 + project: kefi 13 + 14 + notifications: 15 + needs: [lint_and_test] 16 + runs-on: ubuntu-latest 17 + steps: 18 + - name: Slack Notification 19 + id: slack 20 + uses: ravsamhq/notify-slack-action@v2 21 + if: always() 22 + with: 23 + status: ${{ job.status }} 24 + notification_title: "{workflow}" 25 + footer: "{repo}@{branch}" 26 + env: 27 + SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
-12
.github/workflows/action-push-master.yml
··· 1 - name: Action - Push master 2 - 3 - on: 4 - push: 5 - branches: 6 - - main 7 - 8 - jobs: 9 - lint_and_test: 10 - uses: ./.github/workflows/lint-and-test.yml 11 - with: 12 - project: kefi