|
|
|
@ -127,7 +127,7 @@ jobs: |
|
|
|
|
echo "PR_TITLE=$PR_TITLE" >> $GITHUB_ENV |
|
|
|
|
- name: Notify on Slack (Success) |
|
|
|
|
if: success() && github.event_name == 'push' && steps.check_pypi.outputs.increment == 'True' |
|
|
|
|
uses: slackapi/slack-github-action@v1.26.0 |
|
|
|
|
uses: slackapi/slack-github-action@v1.27.0 |
|
|
|
|
with: |
|
|
|
|
payload: | |
|
|
|
|
{"text": "<!channel> GitHub Actions success for ${{ github.workflow }} ✅\n\n\n*Repository:* https://github.com/${{ github.repository }}\n*Action:* https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}\n*Author:* ${{ github.actor }}\n*Event:* NEW '${{ github.repository }} ${{ steps.check_pypi.outputs.current_tag }}' pip package published 😃\n*Job Status:* ${{ job.status }}\n*Pull Request:* <https://github.com/${{ github.repository }}/pull/${{ env.PR_NUMBER }}> ${{ env.PR_TITLE }}\n"} |
|
|
|
@ -135,7 +135,7 @@ jobs: |
|
|
|
|
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL_YOLO }} |
|
|
|
|
- name: Notify on Slack (Failure) |
|
|
|
|
if: failure() |
|
|
|
|
uses: slackapi/slack-github-action@v1.26.0 |
|
|
|
|
uses: slackapi/slack-github-action@v1.27.0 |
|
|
|
|
with: |
|
|
|
|
payload: | |
|
|
|
|
{"text": "<!channel> GitHub Actions error for ${{ github.workflow }} ❌\n\n\n*Repository:* https://github.com/${{ github.repository }}\n*Action:* https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}\n*Author:* ${{ github.actor }}\n*Event:* ${{ github.event_name }}\n*Job Status:* ${{ job.status }}\n*Pull Request:* <https://github.com/${{ github.repository }}/pull/${{ env.PR_NUMBER }}> ${{ env.PR_TITLE }}\n"} |
|
|
|
|