fix(auth): Fix race condition in new unit tests added to AWSCognitoAuthPluginTest #158
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: Notify Pull Request | |
on: | |
pull_request: | |
types: [opened, ready_for_review, reopened] | |
jobs: | |
notify: | |
runs-on: ubuntu-latest | |
if: ${{ !github.event.pull_request.draft }} | |
steps: | |
- name: Run webhook curl command | |
env: | |
WEBHOOK_URL: ${{ secrets.SLACK_PR_WEBHOOK_URL }} | |
URL: ${{ github.event.pull_request.html_url }} | |
TITLE: ${{ github.event.pull_request.title }} | |
USER: ${{ github.event.pull_request.user.login }} | |
shell: bash | |
run: curl -s POST "$WEBHOOK_URL" -H "Content-Type:application/json" --data "{\"url\":\"$URL\", \"title\":\"$TITLE\", \"user\":\"$USER\"}" |