Bump the minor-and-patch group with 3 updates #61
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: Team RubyDX notification | |
on: | |
pull_request_target: | |
types: [opened, reopened] | |
permissions: {} | |
jobs: | |
ping: | |
runs-on: ubuntu-latest | |
name: Trigger Team RubyDX notification | |
steps: | |
- name: Trigger Team RubyDX notification | |
env: | |
PULL_URL: ${{ github.event.pull_request.html_url }} | |
PULL_NUMBER: ${{ github.event.pull_request.number }} | |
PULL_REPO: ${{ github.event.pull_request.head.repo.full_name }} | |
PULL_BRANCH: ${{ github.event.pull_request.head.ref }} | |
run: | | |
curl -X POST -H 'Content-type: application/json' --fail ${{ secrets.SLACK_WEBHOOK_URL }} --data \ | |
" | |
{ | |
\"text\": \":pr-open: New pull request on Shopify/tapioca $PULL_URL\n\n:buildkite: ${{ secrets.BUILDKITE_TRIGGER_URL }}?message=shopify/tapioca/$PULL_NUMBER&env=TAPIOCA_REPO=$PULL_REPO%0ATAPIOCA_BRANCH=$PULL_BRANCH%0ATAPIOCA_PR=$PULL_NUMBER#new\" | |
}" | |