Perform content sync and create a PR #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
################################################################################## | |
# Calls workflow from code repo | |
################################################################################## | |
name: Perform content sync and create a PR | |
on: | |
workflow_dispatch: | |
inputs: | |
pr-title: | |
description: Title for PR | |
type: string | |
default: sync content from google sheets | |
pr-body: | |
description: Description for PR | |
type: string | |
default: Automated PR creation from actions | |
jobs: | |
sync_content: | |
uses: IDEMSInternational/open-app-builder/.github/workflows/reusable-content-sync.yml@master | |
with: | |
pr-title: ${{ inputs.pr-title }} | |
pr-body: ${{ inputs.pr-body }} | |
secrets: inherit |