Jekyll GitHub-Pages Tagging Reusable Workflow #1
This file contains hidden or 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
#################################################################### | |
# call.jekyll-ghpages-tagging.yml | |
#################################################################### | |
# This file is provided as an example of how to call the | |
# jekyll-ghpages-tagging reusable workflow. | |
# | |
# File: call.jekyll-ghpages-tagger.yml | |
# Author: Ragdata | |
# Date: 30/06/2024 | |
# License: MIT License | |
# Copyright: Copyright © 2024 Darren (Ragdata) Poulton | |
#################################################################### | |
name: Jekyll GitHub-Pages Tagging Reusable Workflow | |
on: | |
# Allows for manual triggering via Actions tab | |
workflow_dispatch: | |
jobs: | |
call_reusable_workflow: | |
permissions: | |
contents: write | |
uses: ragdata/reusable-workflows/.github/workflows/jekyll-ghpages-tagging.yml@master | |
with: | |
posts_dir: "docs/_posts" | |
tags_dir: "docs/_tags" | |
tags_layout: "tags" | |
feeds_dir: "docs/_feeds" | |
feeds_layout: "feed" | |
prune_tags: true | |
secrets: | |
token: ${{ secrets.github_token }} |