feat(ACL-251): Adds method to generate SU+ Authentication URI for FI payments #150
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
# Workflow that runs on PR on forks. | |
# Triggered by PR events like opening or synchronizing. | |
# Build, test, run coverage analysis and release to Maven Central a snapshot release. | |
# The job will only run successfully if re-triggered by an internal contributor. | |
name: Workflow for PR on forks | |
on: | |
pull_request_target: | |
types: [ opened, synchronize ] | |
jobs: | |
check-access: | |
if: ${{ ! startsWith(github.event.pull_request.head.repo.full_name, 'TrueLayer/truelayer-java') }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get User Permission | |
id: checkAccess | |
uses: actions-cool/check-user-permission@v2 | |
with: | |
require: write | |
username: ${{ github.triggering_actor }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Check User Permission | |
if: steps.checkAccess.outputs.require-result == 'false' | |
run: | | |
echo "${{ github.triggering_actor }} does not have permissions on this repo." | |
echo "Current permission level is ${{ steps.checkAccess.outputs.user-permission }}" | |
echo "Job originally triggered by ${{ github.actor }}" | |
exit 1 | |
build-test-coverage: | |
needs: check-access | |
uses: ./.github/workflows/build-test-coverage.yml | |
with: | |
checkout_ref: ${{ github.event.pull_request.head.sha }} | |
secrets: | |
coveralls_repo_token: ${{ secrets.COVERALLS_REPO_TOKEN }} | |
acceptance-tests: | |
needs: build-test-coverage | |
uses: ./.github/workflows/acceptance-tests.yml | |
with: | |
checkout_ref: ${{ github.event.pull_request.head.sha }} | |
secrets: | |
tl_client_id: ${{ secrets.ACCEPTANCE_TEST_CLIENT_ID }} | |
tl_client_secret: ${{ secrets.ACCEPTANCE_TEST_CLIENT_SECRET }} | |
tl_signing_key_id: ${{ secrets.ACCEPTANCE_TEST_SIGNING_KEY_ID }} | |
tl_signing_private_key: ${{ secrets.ACCEPTANCE_TEST_SIGNING_PRIVATE_KEY }} | |
release-snapshot: | |
needs: [build-test-coverage, acceptance-tests] | |
uses: ./.github/workflows/release-snapshot.yml | |
with: | |
checkout_ref: ${{ github.event.pull_request.head.sha }} | |
project_version: ${{ needs.build-test-coverage.outputs.project_version }} | |
secrets: | |
sonatype_username: ${{ secrets.SONATYPE_USERNAME }} | |
sonatype_password: ${{ secrets.SONATYPE_PASSWORD }} |