Skip to content

chore(ci): deployer higher-level environments, merge workflow #7

chore(ci): deployer higher-level environments, merge workflow

chore(ci): deployer higher-level environments, merge workflow #7

Workflow file for this run

name: Merge
on:
pull_request:
push:
branches: [main]
paths-ignore:
- '*.md'
- '.github/**'
- '.graphics/**'
- '!.github/workflows/**'
workflow_dispatch:
inputs:
pr_no:
description: "PR-numbered container set to deploy"
type: number
required: true
jobs:
vars:
name: Set Variables
outputs:
pr: ${{ steps.pr.outputs.pr }}
runs-on: ubuntu-22.04
timeout-minutes: 1
steps:
# Get PR number for squash merges to main
- name: PR Number
id: pr
uses: bcgov-nr/[email protected]
deploy-test:
name: Deploy (test)
needs: [vars]
uses: ./.github/workflows/.deployer.yml

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

View workflow run for this annotation

GitHub Actions / Merge

Invalid workflow file

The workflow is not valid. In .github/workflows/merge.yml (Line: 35, Col: 11): Error from called workflow bcgov/quickstart-openshift-helpers/.github/workflows/.deployer.yml@d155f35b3a9caecf137ad06df7f915ccaddea15e (Line: 21, Col: 15): Unexpected value 'environment'
secrets:
oc_namespace: ${{ vars.oc_namespace }}
oc_token: ${{ secrets.oc_token }}
with:
environment: test
params: --set global.autoscaling=false
release: test
tag: ${{ needs.vars.outputs.pr }}