Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/_run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ jobs:
- name: Git checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Detect secrets
uses: alphagov/pay-ci/actions/detect-secrets@master
uses: govuk-pay/pay-ci/actions/detect-secrets@master

integration-tests:
name: "Integration tests and publish pacts"
uses: alphagov/pay-ci/.github/workflows/_run-java-tests-and-publish-pacts.yml@master
uses: govuk-pay/pay-ci/.github/workflows/_run-java-tests-and-publish-pacts.yml@master
with:
publish_pacts: true
java_version: "25"
Expand All @@ -33,7 +33,7 @@ jobs:
pact-providers-contract-tests:
name: "Provider tests"
needs: integration-tests
uses: alphagov/pay-ci/.github/workflows/_run-provider-pact-tests-for-consumer.yml@master
uses: govuk-pay/pay-ci/.github/workflows/_run-provider-pact-tests-for-consumer.yml@master
strategy:
matrix:
provider: [ 'ledger' ]
Expand All @@ -46,5 +46,5 @@ jobs:
pact_broker_password: ${{ secrets.pact_broker_password }}

check-docker-base-images-are-manifests:
uses: alphagov/pay-ci/.github/workflows/_validate_docker_image_is_manifest.yml@master
uses: govuk-pay/pay-ci/.github/workflows/_validate_docker_image_is_manifest.yml@master

2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ permissions:
jobs:
analyze:
name: "Run CodeQL"
uses: alphagov/pay-ci/.github/workflows/_run-codeql-scan.yml@master
uses: govuk-pay/pay-ci/.github/workflows/_run-codeql-scan.yml@master
with:
is_java_repo: true
2 changes: 1 addition & 1 deletion .github/workflows/post-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ jobs:
- tests
permissions:
contents: write
uses: alphagov/pay-ci/.github/workflows/_create-alpha-release-tag.yml@master
uses: govuk-pay/pay-ci/.github/workflows/_create-alpha-release-tag.yml@master
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ jobs:

dependency-review:
name: Dependency Review scan
uses: alphagov/pay-ci/.github/workflows/_run-dependency-review.yml@master
uses: govuk-pay/pay-ci/.github/workflows/_run-dependency-review.yml@master
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ This guide covers the basics of how to contribute to the GOV.UK Pay project.
## Contributions from beyond the team
If you have an idea or a feature request to share, please contact the GOV.UK Pay team by emailing govuk-pay-support@digital.cabinet-office.gov.uk.

Please do not submit pull requests or raise GitHub issues for security vulnerabilities. Please follow our [vulnerability disclosure](https://github.com/alphagov/pay-webhooks/blob/main/README.md#vulnerability-disclosure) process instead.
Please do not submit pull requests or raise GitHub issues for security vulnerabilities. Please follow our [vulnerability disclosure](https://github.com/govuk-pay/pay-webhooks/blob/main/README.md#vulnerability-disclosure) process instead.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ GOV.UK Pay microservice for sending events to callback URLs configured by partne

The [API Specification](openapi/webhooks_spec.yaml) provides more detail on the paths and operations including examples.

[View the API specification for webhooks in Swagger Editor](https://editor.swagger.io/?url=https://raw.githubusercontent.com/alphagov/pay-webhooks/main/openapi/webhooks_spec.yaml).
[View the API specification for webhooks in Swagger Editor](https://editor.swagger.io/?url=https://raw.githubusercontent.com/govuk-pay/pay-webhooks/main/openapi/webhooks_spec.yaml).

## Licence

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import static java.util.Arrays.stream;

// Based on Connector enum: https://github.com/alphagov/pay-connector/blob/master/src/main/java/uk/gov/pay/connector/common/model/api/ExternalChargeState.java
// Based on Connector enum: https://github.com/govuk-pay/pay-connector/blob/master/src/main/java/uk/gov/pay/connector/common/model/api/ExternalChargeState.java
public enum ExternalChargeState {
EXTERNAL_CREATED("created", false),
EXTERNAL_STARTED("started", false),
Expand Down
Loading