generated from HariSekhon/Template-Repo
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
20370c9
commit fdb4ab1
Showing
1 changed file
with
54 additions
and
0 deletions.
There are no files selected for viewing
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
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 |