Merge pull request #2884 from alphagov/pp-11548/update-prometheus-init #451
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: Post Merge | |
on: | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- '.github/**' | |
permissions: | |
contents: read | |
concurrency: ledger-post-merge | |
jobs: | |
tests: | |
uses: ./.github/workflows/run-tests.yml | |
publish-ledger-consumer-contract-tests: | |
needs: tests | |
runs-on: ubuntu-latest | |
name: Publish and tag ledger consumer pact | |
steps: | |
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab | |
- name: Set up JDK 11 | |
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 | |
with: | |
java-version: '11' | |
distribution: 'adopt' | |
- name: Cache Maven packages | |
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-m2 | |
- name: Cache pacts directory | |
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 | |
with: | |
path: target/pacts | |
key: ${{ runner.os }}-build-id-${{ github.head_ref }}-${{ github.sha }}-pacts | |
- name: Publish and tag ledger consumer pact | |
run: | | |
mvn pact:publish -DPACT_BROKER_URL=https://pact-broker.deploy.payments.service.gov.uk \ | |
-DrunConsumerContractTests \ | |
-DPACT_BROKER_USERNAME=${{ secrets.pact_broker_username }} \ | |
-DPACT_BROKER_PASSWORD=${{ secrets.pact_broker_password }} \ | |
-DPACT_CONSUMER_TAG=master \ | |
-DPACT_CONSUMER_VERSION=${{ github.sha }} | |
connector-provider-contract-tests: | |
needs: publish-ledger-consumer-contract-tests | |
uses: alphagov/pay-connector/.github/workflows/_run-pact-provider-tests.yml@master | |
with: | |
consumer: ledger | |
consumer_tag: master | |
secrets: | |
pact_broker_username: ${{ secrets.pact_broker_username }} | |
pact_broker_password: ${{ secrets.pact_broker_password }} | |
provider-contract-tests: | |
needs: tests | |
uses: alphagov/pay-ci/.github/workflows/_run-provider-contract-tests.yml@master | |
secrets: | |
pact_broker_username: ${{ secrets.pact_broker_username }} | |
pact_broker_password: ${{ secrets.pact_broker_password }} | |
tag-release: | |
needs: | |
- connector-provider-contract-tests | |
- provider-contract-tests | |
permissions: | |
contents: write | |
uses: alphagov/pay-ci/.github/workflows/_create-alpha-release-tag.yml@master |