Sync handlebars template with SendGrid #3
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
name: Sync handlebars template with SendGrid | |
on: | |
workflow_dispatch: | |
inputs: | |
FORCE_SYNC_ALL: | |
description: Force sync all files in templates dir (Useful for initial synchronization) | |
required: false | |
default: false | |
jobs: | |
sync-templates-in-sendgrid: | |
uses: ./.github/workflows/sync-sendgrid-template-action.yml | |
with: | |
FORCE_SYNC_ALL: '${{ github.event.inputs.FORCE_SYNC_ALL }}' | |
secrets: | |
SENDGRID_API_KEY: ${{ secrets.SENDGRID_API_KEY }} |