Skip to content

Commit

Permalink
Create trigger-workflow.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ibbsbbr authored Sep 19, 2024
1 parent e9d4c72 commit b30f02a
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/trigger-workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Trigger Workflow

on:
workflow_dispatch:
inputs:
run_workflow:
description: 'Trigger the Jekyll Workflow'
required: true
default: 'yes'

jobs:
trigger_jekyll:
runs-on: ubuntu-latest
steps:
- name: Trigger Jekyll Workflow
uses: peter-evans/workflow-dispatch@v1
with:
token: ${{ secrets.GH_PAT }}
repository: ${{ github.repository }}
workflow: jekyll.yml
ref: main

0 comments on commit b30f02a

Please sign in to comment.