Propose check to detect misconfiguration for CORS credentials requested. #126
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 Webhook | |
on: | |
pull_request_target: | |
types: [opened, reopened] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Push to webhook | |
run: | | |
echo $AUTHOR $TITLE $LINK | |
curl "$WEBHOOK" -X POST -H "Authorization: $AUTH_TOKEN" -d "$AUTHOR"$'\n'"$TITLE"$'\n'"$LINK" | |
env: | |
AUTHOR: ${{ github.event.pull_request.user.login }} | |
TITLE: ${{ github.event.pull_request.title }} | |
LINK: ${{ github.event.pull_request.html_url }} | |
WEBHOOK: ${{ secrets.WEBHOOK_URL }} | |
AUTH_TOKEN: ${{ secrets.AUTH_TOKEN }} |