name: Verify # Controls when the action will run. Triggers the workflow on push or pull request # events but only for the main branch on: push: branches: [ main ] # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: verify: if: ${{ !contains( github.event.pull_request.labels.*.name, 'skip ci' ) }} uses: ./.github/workflows/verify-workflow.yaml secrets: IBMCLOUD_API_KEY: ${{ secrets.IBMCLOUD_API_KEY }} verifyMetadata: uses: cloud-native-toolkit/action-workflows/.github/workflows/verify-module-metadata.yaml@v1 release: needs: [verify, verifyMetadata] uses: cloud-native-toolkit/action-workflows/.github/workflows/release-module.yaml@v1 secrets: TOKEN: ${{ secrets.TOKEN }}