Bump the all-actions group across 1 directory with 2 updates #94
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: token-plugin-pr | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- '**' | |
- '!sovtokenfees/sovtokenfees/metadata.json' | |
- '!sovtoken/sovtoken/metadata.json' | |
workflow_dispatch: | |
jobs: | |
workflow-setup: | |
name: Initialize Workflow | |
runs-on: ubuntu-latest | |
outputs: | |
CACHE_KEY_BUILD: ${{ steps.setup.outputs.CACHE_KEY_BUILD }} | |
UBUNTU_VERSION: ${{ steps.setup.outputs.UBUNTU_VERSION }} | |
# Expose the lowercase version of the GitHub repository name | |
# to all subsequent jobs that reference image repositories | |
# as the push and pull operations require the URL of the repository | |
# to be in lowercase. | |
GITHUB_REPOSITORY_NAME: ${{ steps.setup.outputs.GITHUB_REPOSITORY_NAME }} | |
distribution: ${{ steps.setup.outputs.distribution }} | |
publish: ${{ steps.setup.outputs.publish }} | |
testsNeeded: ${{ steps.testsNeeded.outputs.testsNeeded }} | |
steps: | |
- name: checkout source code | |
uses: actions/checkout@v4 | |
- name: setup | |
id: setup | |
uses: hyperledger/indy-shared-gha/.github/actions/workflow-setup@v2 | |
with: | |
ownerRepo: "sovrin-foundation" | |
- name: testsNeeded | |
id: testsNeeded | |
uses: dorny/paths-filter@v3 | |
with: | |
filters: | | |
testsNeeded: | |
- '**.py' | |
- '.github/**' | |
lint: | |
name: Lint | |
needs: [workflow-setup] | |
if: ${{ needs.workflow-setup.outputs.testsNeeded == 'true' }} | |
uses: hyperledger/indy-shared-gha/.github/workflows/lint.yaml@v2 | |
build-image: | |
name: Create Builder Image | |
needs: [workflow-setup, lint] | |
uses: hyperledger/indy-shared-gha/.github/workflows/buildimage.yaml@v2 | |
with: | |
CACHE_KEY_BUILD: ${{ needs.workflow-setup.outputs.CACHE_KEY_BUILD }} | |
DOCKER_IMAGE: ghcr.io/${{ needs.workflow-setup.outputs.GITHUB_REPOSITORY_NAME }}/token-plugin-build | |
UBUNTU_VERSION: ${{ needs.workflow-setup.outputs.UBUNTU_VERSION }} | |
token-plugin-tests: | |
name: Token Plugin Tests | |
needs: [workflow-setup, build-image] | |
uses: ./.github/workflows/reuseable_test.yaml | |
with: | |
GITHUB_REPOSITORY_NAME: ${{ needs.workflow-setup.outputs.GITHUB_REPOSITORY_NAME }} | |
UBUNTU_VERSION: ${{ needs.workflow-setup.outputs.UBUNTU_VERSION }} | |
build-packages: | |
name: Token Plugin Build package | |
needs: [workflow-setup, token-plugin-tests] | |
uses: ./.github/workflows/reuseable_build_package.yaml | |
with: | |
GITHUB_REPOSITORY_NAME: ${{ needs.workflow-setup.outputs.GITHUB_REPOSITORY_NAME }} | |
UBUNTU_VERSION: ${{ needs.workflow-setup.outputs.UBUNTU_VERSION }} | |
statusCheck: | |
name: statusCheck | |
runs-on: ubuntu-latest | |
needs: [workflow-setup, build-packages] | |
if: ${{ needs.workflow-setup.outputs.testsNeeded == 'false' || success() }} | |
steps: | |
- run: 'echo "Just a status Check (Always true, when executed) for branch protection rules(blocks merging while test are running and if tests fail)." ' |