Skip to content

Update pr-open.yml

Update pr-open.yml #3

Workflow file for this run

name: PR
on:
pull_request:
concurrency:
# Cancel in progress for PR open and close
group: ${{ github.event.number }}
cancel-in-progress: true
jobs:
# https://github.com/bcgov-nr/action-builder-ghcr
builds:
name: Builds
runs-on: ubuntu-22.04
strategy:
matrix:
package: [backend, frontend, migrations]
timeout-minutes: 10
steps:
- uses: bcgov-nr/action-builder-ghcr@v2.2.0
with:
package: ${{ matrix.package }}
tag: ${{ github.event.number }}
tag_fallback: latest
triggers: ('${{ matrix.package }}/')
# https://github.com/bcgov/quickstart-openshift-helpers
deploys:
name: Deploys
needs: [builds]
uses: bcgov/quickstart-openshift-helpers/.github/workflows/.deployer.yml@v0.7.0
secrets:
oc_namespace: ${{ var.OC_NAMESPACE }}

Check failure on line 34 in .github/workflows/pr-open.yml

View workflow run for this annotation

GitHub Actions / PR

Invalid workflow file

The workflow is not valid. .github/workflows/pr-open.yml (Line: 34, Col: 21): Unrecognized named-value: 'var'. Located at position 1 within expression: var.OC_NAMESPACE .github/workflows/pr-open.yml (Line: 38, Col: 18): Unrecognized named-value: 'var'. Located at position 1 within expression: var.OC_SERVER
oc_token: ${{ secrets.OC_TOKEN }}
with:
triggers: ('backend/' 'frontend/' 'migrations/')
oc_server: ${{ var.OC_SERVER }}
params:
--set global.secrets.persist=false
tests:
name: Tests
if: needs.deploys.outputs.triggered == 'true'
needs: [deploys]
uses: ./.github/workflows/.tests.yml
with:
target: ${{ github.event.number }}
results:
name: PR Results
needs: [builds, deploys, tests]
if: always()
runs-on: ubuntu-22.04
steps:
- if: contains(needs.*.result, 'failure')
run: echo "At least one job has failed." && exit 1
- run: echo "Success!"