Skip to content

remove vars step

remove vars step #8

Workflow file for this run

name: Merge
on:
pull_request:
branches: [dev]
types: [closed]
concurrency:
# PR open and close use the same group, allowing only one at a time
group: pr-${{ github.workflow }}-${{ github.event.number }}
cancel-in-progress: true
jobs:
# https://github.com/bcgov-nr/action-builder-ghcr
builds:

Check failure on line 15 in .github/workflows/.merge.yml

View workflow run for this annotation

GitHub Actions / Merge

Invalid workflow file

The workflow is not valid. .github/workflows/.merge.yml (Line: 15, Col: 3): The workflow must contain at least one job with no dependencies.
name: Builds
needs: [vars]
runs-on: ubuntu-22.04
permissions:
packages: write
strategy:
matrix:
package: [containers/clamav]
timeout-minutes: 10
steps:
- uses: bcgov-nr/[email protected]
with:
keep_versions: 50
package: ${{ matrix.package }}
tag: latest
triggers: ('${{ matrix.package }}/')
deploys:
name: Deploys Anitvirus
needs: [builds]
environment: tools
permissions:
issues: write
runs-on: ubuntu-22.04
strategy:
matrix:
include:
- name: clamav
file: containers/clamav/openshift/templates/clamav-dc.yaml
overwrite: false
steps:
- uses: bcgov-nr/[email protected]
with:
file: ${{ matrix.file }}
oc_namespace: ${{ vars.OC_NAMESPACE }}
oc_server: ${{ vars.OC_SERVER }}
oc_token: ${{ secrets.OC_TOKEN }}
overwrite: ${{ matrix.overwrite }}
parameters: -p ZONE=prod -p NAME=${{ github.event.repository.name }}
repository: ${{ matrix.repository }}
verification_path: ${{ matrix.verification_path }}