chore(deps): bump korthout/backport-action from 52886ff43ef0184911d99c0a489f5c1307db8fc7 to 2d0c956ea9349c950216010d49bc774aeb8cc0d0 #18865
Workflow file for this run
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: Pull Request Schema Labeler | |
on: | |
pull_request: | |
types: [opened, edited, labeled, unlabeled] | |
jobs: | |
schema-change-labels: | |
if: "${{ contains(github.event.*.labels.*.name, 'schema-change-noteworthy') }}" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Schema change label found | |
uses: rtCamp/action-slack-notify@v2 | |
continue-on-error: true | |
env: | |
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_SCHEMA_CHANGE }} | |
SLACK_MESSAGE: ${{ github.event.pull_request.title }} | |
SLACK_FOOTER: "<${{ github.server_url }}/${{ github.repository }}/pull/${{ github.event.pull_request.number }}>" |