Skip to content

Commit

Permalink
feat: Add log_level input to Jekyll build workflow
Browse files Browse the repository at this point in the history
Adds a new `log_level` input parameter to the Jekyll build workflow. This
allows the user to specify the desired log level for the Jekyll build
process, which can be useful for debugging purposes.
  • Loading branch information
esolitos authored and gitbutler-client committed Aug 29, 2024
1 parent 4495b07 commit 45947ab
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/jekyll-feed-to-vespa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ name: Feed Jekyll posts to Vespa

on:
workflow_call:
inputs:
log_level:
description: 'Log level for Jekyll build.'
required: false
default: 'info'
type: string

defaults:
run:
Expand All @@ -19,6 +25,8 @@ jobs:

- name: Build with Jekyll
uses: vespa-engine/gh-actions/jekyll-build-json@feature-jekyll-build-json-action
with:
log_level: ${{ github.event.inputs.log_level }}

- name: List JSON
run: |
Expand Down

0 comments on commit 45947ab

Please sign in to comment.