Skip to content

Commit

Permalink
Use --webhook-callback-url when verifying pact (#82)
Browse files Browse the repository at this point in the history
Using `--url` triggers additional (incorrect) pacts to be tested, `--webhook-callback-url` ensures that only the one specified is used.

#patch
  • Loading branch information
gregtyler authored Jan 3, 2024
1 parent acd14fc commit 0b894f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pact-provider-verification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
--publish \
--user=admin \
--password=${{ secrets.PACT_BROKER_PASSWORD }} \
--url=${{ github.event.client_payload.pact_url }}
--webhook-callback-url=${{ github.event.client_payload.pact_url }}
- name: Verify pacts, including pending
if: ${{ github.event_name == 'push' }}
run: |
Expand Down

0 comments on commit 0b894f5

Please sign in to comment.