PWX-35292: Reduce log level for chatty log Volume was deleted #14
This file contains 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: Message Slack for stale PRs | |
on: | |
pull_request_target: | |
types: [labeled] | |
jobs: | |
build: | |
if: contains(github.event.pull_request.labels.*.name, 'stage/in-review-stale') | |
runs-on: ubuntu-latest | |
steps: | |
- name: Send custom JSON data to Slack workflow | |
id: slack | |
uses: slackapi/[email protected] | |
with: | |
payload: | | |
{ | |
"pr_name": "${{ github.event.pull_request.title }}", | |
"pr_link": "${{ github.event.pull_request.html_url }}" | |
} | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} |