diff --git a/_shared/project/.github/workflows/slack.yml b/_shared/project/.github/workflows/slack.yml new file mode 100644 index 0000000..3198a29 --- /dev/null +++ b/_shared/project/.github/workflows/slack.yml @@ -0,0 +1,18 @@ +name: Slack +on: + workflow_run: + workflows: [CI] + types: [completed] + branches: [main] +jobs: + on-failure: + runs-on: ubuntu-latest + if: ${{ github.event.workflow_run.conclusion == 'failure' }} + steps: + - name: Post to Slack + uses: slackapi/slack-github-action@v1.24.0 + with: + channel-id: 'C4K6M7P5E' + slack-message: "A workflow run failed\n*Repo:* `${{ github.event.repository.full_name }}` (${{ github.event.repository.html_url }})\n*Workflow:* ${{ github.event.workflow.name }} (${{ github.event.workflow.html_url }})\n*Branch:* `${{ github.event.workflow_run.head_branch }}`\n*Commit:* `${{ github.event.workflow_run.head_commit.id }}`\n*Run:* ${{ github.event.workflow_run.html_url }}\n*Conclusion:* ${{ github.event.workflow_run.conclusion }}" + env: + SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }} diff --git a/pyapp/{{ cookiecutter.slug }}/.github/workflows/slack.yml b/pyapp/{{ cookiecutter.slug }}/.github/workflows/slack.yml new file mode 120000 index 0000000..9fa4735 --- /dev/null +++ b/pyapp/{{ cookiecutter.slug }}/.github/workflows/slack.yml @@ -0,0 +1 @@ +../../../../_shared/project/.github/workflows/slack.yml \ No newline at end of file diff --git a/pypackage/{{ cookiecutter.slug }}/.github/workflows/slack.yml b/pypackage/{{ cookiecutter.slug }}/.github/workflows/slack.yml new file mode 120000 index 0000000..9fa4735 --- /dev/null +++ b/pypackage/{{ cookiecutter.slug }}/.github/workflows/slack.yml @@ -0,0 +1 @@ +../../../../_shared/project/.github/workflows/slack.yml \ No newline at end of file diff --git a/pyramid-app/{{ cookiecutter.slug }}/.github/workflows/slack.yml b/pyramid-app/{{ cookiecutter.slug }}/.github/workflows/slack.yml new file mode 120000 index 0000000..9fa4735 --- /dev/null +++ b/pyramid-app/{{ cookiecutter.slug }}/.github/workflows/slack.yml @@ -0,0 +1 @@ +../../../../_shared/project/.github/workflows/slack.yml \ No newline at end of file