Skip to content

Commit

Permalink
added markdown.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
HariSekhon committed Oct 11, 2024
1 parent 20370c9 commit fdb4ab1
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions .github/workflows/markdown.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
#
# Author: Hari Sekhon
# Date: 2023-04-14 23:53:43 +0100 (Fri, 14 Apr 2023)
#
# vim:ts=2:sts=2:sw=2:et
#
# https://github.com/HariSekhon/Packer
#
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback
#
# https://www.linkedin.com/in/HariSekhon
#

# ============================================================================ #
# M a r k D o w n
# ============================================================================ #

---
name: Markdown

on:
push:
branches:
- master
- main
paths:
- '**/*.md'
- .mdlrc
- .mdl.rb
- .markdownlint.rb
- .github/workflows/markdown.yaml
pull_request:
branches:
- master
- main
paths:
- '**/*.md'
- .mdlrc
- .mdl.rb
- .markdownlint.rb
- .github/workflows/markdown.yaml
workflow_dispatch:

permissions:
contents: read
pull-requests: read

jobs:
Markdown:
# github.event.repository context not available in scheduled workflows
#if: github.event.repository.fork == false
if: github.repository_owner == 'HariSekhon'
name: Markdown
uses: HariSekhon/GitHub-Actions/.github/workflows/markdown.yaml@master

0 comments on commit fdb4ab1

Please sign in to comment.