Skip to content

Commit

Permalink
ready?
Browse files Browse the repository at this point in the history
  • Loading branch information
isidore committed Nov 9, 2023
0 parents commit 993ad91
Show file tree
Hide file tree
Showing 7 changed files with 69 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/updateMarkdown.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: on-push-do-doco
on:
push:
jobs:
release:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Run MarkdownSnippets
run: |
dotnet tool install --global MarkdownSnippets.Tool
mdsnippets ${GITHUB_WORKSPACE}
shell: bash
- name: Push changes
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git commit -m "Doco changes" -a || echo "nothing to commit"
remote="https://${GITHUB_ACTOR}:${{secrets.GITHUB_TOKEN}}@github.com/${GITHUB_REPOSITORY}.git"
branch="${GITHUB_REF:11}"
git push "${remote}" ${branch} || echo "nothing to push"
shell: bash
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.DS_Store
~*
4 changes: 4 additions & 0 deletions Slides/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Slides

If you are using powerpower I suggest posting your slides here.
Otherwise you might prefer a pdf of your slides
6 changes: 6 additions & 0 deletions mdsnippets.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"ExcludeDirectories": [ "target" ],
"Convention": "InPlaceOverwrite",
"TocLevel": 5
}

11 changes: 11 additions & 0 deletions qrcodes/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# QR codes

Here is a folder to hold your qr code.
I suggest the following naming pattern:
```
qr_talk_title.svg
```

## Resources
* [QR Monkey](https://www.qrcode-monkey.com/)
* [Lego](https://codepen.io/agalliat/pen/wvoMbWx)
17 changes: 17 additions & 0 deletions sample_talk.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Talk Title

## Talk Resources
* [Slides](./Slides/sampleslides.pptx)


## Llewellyn's <!-- include: your_bio.md -->

* [Blog](https://llewellynfalco.blogspot.com/)
* [ApprovalTests](https://github.com/approvals/)
* [YouTube](https://www.youtube.com/user/isidoreus/videos)
* [Twitch](https://www.twitch.tv/llewellynfalco)
* [Learn With Llew](https://github.com/LearnWithLlew)

I'm a Technical Agile Coach. You can [hire me](http://llewellynfalco.blogspot.com/p/hire-me.html)
<!-- endInclude -->

7 changes: 7 additions & 0 deletions your_bio.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
## Your Name

* [Your Blog](https://you.blogspot.com/)
* [Your Others links](https://google.com/you)

A bit about you

0 comments on commit 993ad91

Please sign in to comment.