chore(deps): bump awscrt from 0.29.2 to 0.31.2 in /requirements #54
Workflow file for this run
This file contains hidden or 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: Slack Notifications | |
| on: | |
| pull_request: | |
| types: [labeled] | |
| issues: | |
| types: [opened] | |
| jobs: | |
| notify-slack: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Wait for label to be applied | |
| run: sleep 10s | |
| shell: bash | |
| - name: Send External PR Notification | |
| if: github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'pr/external') | |
| uses: rtCamp/action-slack-notify@e31e87e03dd19038e411e38ae27cbad084a90661 # v2 | |
| env: | |
| SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_URL }} | |
| SLACK_TITLE: 'PR Created: ${{ github.event.pull_request.title }} by ${{ github.event.pull_request.user.login }}' | |
| SLACK_FOOTER: '' | |
| MSG_MINIMAL: true | |
| SLACK_MESSAGE: '${{ github.event.pull_request.html_url }}' | |
| - name: Send New Issue Notification | |
| if: github.event_name == 'issue' | |
| uses: rtCamp/action-slack-notify@e31e87e03dd19038e411e38ae27cbad084a90661 # v2 | |
| env: | |
| SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_URL }} | |
| SLACK_TITLE: 'Issue Created: ${{ github.event.issue.title }} by ${{ github.event.issue.user.login }}' | |
| SLACK_FOOTER: '' | |
| MSG_MINIMAL: true | |
| SLACK_MESSAGE: '${{ github.event.issue.html_url }}' |