Skip to content

Commit

Permalink
chore: add description to gh actions workflow inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
bdegeeter committed Feb 11, 2024
1 parent f9116ae commit ac3dd39
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/porter-canary.yml
Expand Up @@ -3,24 +3,26 @@ on:
workflow_dispatch:
inputs:
shouldPublish:
description: Should Publish
default: true
type: boolean
required: false
skipTests:
description: Skip Tests
default: false
type: boolean
required: false
push:
branches:
- main
- release/*
- main
- release/*
pull_request:
branches:
- split-builds
- split-builds
jobs:
build_pipelinesrelease_template:
name: build_pipelinesrelease_template
uses: "./.github/workflows/build_pipelinesrelease_template.yml"
uses: './.github/workflows/build_pipelinesrelease_template.yml'
with:
registry: ghcr.io/getporter
shouldPublish: ${{inputs.shouldPublish}}
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/test-porter-release.yml
Expand Up @@ -3,24 +3,26 @@ on:
workflow_dispatch:
inputs:
shouldPublish:
description: Should Publish
default: true
type: boolean
required: false
skipTests:
description: Skip Tests
default: true
type: boolean
required: false
pull_request:
branches:
- main
- main
env:
PORTER_PACKAGES_REMOTE: https://github.com/carolynvs/porter-packages.git
PORTER_RELEASE_REPOSITORY: github.com/carolynvs/porter
jobs:
build_pipelinesrelease_template:
name: build_pipelinesrelease_template
uses: "./.github/workflows/build_pipelinesrelease_template.yml"
uses: './.github/workflows/build_pipelinesrelease_template.yml'
with:
registry: ghcr.io/getporter/test
shouldPublish: ${{ inputs.shouldPublish }}
skipTests: ${{ inputs.skipTests }}
skipTests: ${{ inputs.skipTests }}

0 comments on commit ac3dd39

Please sign in to comment.