Skip to content

Create tags.md

Create tags.md #52

name: call create gist
on:
workflow_dispatch:
inputs:
file_path:
description: 'Path to the markdown file (.md) to create as a gist'
required: true
type: string
jobs:
create:
permissions:
contents: write permissions:

Check failure on line 13 in .github/workflows/call-create-gist.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/call-create-gist.yml

Invalid workflow file

You have an error in your yaml syntax on line 13
contents: write create:
uses: devinschumacher/workflows/.github/workflows/create-gist.yml@main
with:
file_path: ${{ github.event.inputs.file_path }}
secrets:
# IMPORTANT: Replace GH_PAT with your secret name
# This secret must exist in your repository
# Go to Settings > Secrets and variables > Actions to add it
GH_PAT: ${{ secrets.GH_PAT }}