|
|
@ -92,7 +92,7 @@ jobs: |
|
|
|
echo "PR_TITLE=$PR_TITLE" >> $GITHUB_ENV |
|
|
|
echo "PR_TITLE=$PR_TITLE" >> $GITHUB_ENV |
|
|
|
- name: Notify on Slack (Success) |
|
|
|
- name: Notify on Slack (Success) |
|
|
|
if: success() && github.event_name == 'push' && steps.check_pypi.outputs.increment == 'True' |
|
|
|
if: success() && github.event_name == 'push' && steps.check_pypi.outputs.increment == 'True' |
|
|
|
uses: slackapi/slack-github-action@v1.27.0 |
|
|
|
uses: slackapi/slack-github-action@v2.0.0 |
|
|
|
with: |
|
|
|
with: |
|
|
|
payload: | |
|
|
|
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"} |
|
|
|
{"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"} |
|
|
@ -100,7 +100,7 @@ jobs: |
|
|
|
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL_YOLO }} |
|
|
|
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL_YOLO }} |
|
|
|
- name: Notify on Slack (Failure) |
|
|
|
- name: Notify on Slack (Failure) |
|
|
|
if: failure() |
|
|
|
if: failure() |
|
|
|
uses: slackapi/slack-github-action@v1.27.0 |
|
|
|
uses: slackapi/slack-github-action@v2.0.0 |
|
|
|
with: |
|
|
|
with: |
|
|
|
payload: | |
|
|
|
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"} |
|
|
|
{"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"} |
|
|
|