Skip to content

Commit

Permalink
chore: Update workflow to also accept manual trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
alwyn-ixo authored Oct 26, 2023
1 parent fa42a34 commit 87c0eeb
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/pull-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,19 @@ on:
push:
branches:
- develop

workflow_dispatch:
# Inputs the workflow accepts.
inputs:
name:
# Friendly description to be shown in the UI instead of 'name'
description: 'Person to greet'
# Default value if no value is explicitly provided
default: 'World'
# Input has to be provided for the workflow to run
required: true
# The data type of the input
type: string

jobs:
pull-readme:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 87c0eeb

Please sign in to comment.