Skip to content

Commit

Permalink
manually runnable CI
Browse files Browse the repository at this point in the history
  • Loading branch information
avishniakov authored Dec 12, 2023
1 parent 4d942a1 commit 71663a3
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,25 @@ name: CI

on:
workflow_dispatch:
inputs:
ref-template:
description: 'Branch or tag ref to check out for template'
type: string
required: false
ref-zenml:
description: 'Branch or tag ref to check out for ZenML'
type: string
required: false
workflow_call:
inputs:
ref-template:
description: 'Branch or tag ref to check out for template'
type: string
required: false
ref-zenml:
description: 'Branch or tag ref to check out for ZenML'
type: string
required: false
push:
branches: ["main", "develop"]
paths-ignore: ["README.md"]
Expand Down Expand Up @@ -38,4 +56,6 @@ jobs:
with:
stack-name: ${{ matrix.stack-name }}
python-version: ${{ matrix.python-version }}
ref-zenml: feature/OSS-2529-passing-pipeline-parameters-as-yaml-and-document
ref-zenml: ${{ inputs.ref-zenml || 'feature/OSS-2529-passing-pipeline-parameters-as-yaml-and-document' }}
ref-template: ${{ inputs.ref-template || github.ref }}

0 comments on commit 71663a3

Please sign in to comment.