diff --git a/.github/workflows/_run-tests.yml b/.github/workflows/_run-tests.yml index 5b4c6d95..8cea0b9c 100644 --- a/.github/workflows/_run-tests.yml +++ b/.github/workflows/_run-tests.yml @@ -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" @@ -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' ] @@ -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 diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 59c895ea..7cc98f95 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -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 diff --git a/.github/workflows/post-merge.yml b/.github/workflows/post-merge.yml index d9a3312e..b0be8d0d 100644 --- a/.github/workflows/post-merge.yml +++ b/.github/workflows/post-merge.yml @@ -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 diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 6f732b6c..ee9846c7 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -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 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 9f7ae54d..523866f6 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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. diff --git a/README.md b/README.md index 0f2b98e1..6e4df1e3 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/src/main/java/uk/gov/pay/webhooks/message/apirepresentation/ExternalChargeState.java b/src/main/java/uk/gov/pay/webhooks/message/apirepresentation/ExternalChargeState.java index c1c504f4..b98e2043 100644 --- a/src/main/java/uk/gov/pay/webhooks/message/apirepresentation/ExternalChargeState.java +++ b/src/main/java/uk/gov/pay/webhooks/message/apirepresentation/ExternalChargeState.java @@ -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),