Skip to content

Commit d4b63b9

Browse files
author
Martin Wentzel
committed
Add workflowes for README
1 parent 8eb15bc commit d4b63b9

File tree

3 files changed

+68
-0
lines changed

3 files changed

+68
-0
lines changed

.github/workflows/readme-scribe.yml

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Update README
2+
3+
on:
4+
push:
5+
schedule:
6+
- cron: "0 */1 * * *"
7+
8+
jobs:
9+
markscribe:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@master
13+
14+
- uses: muesli/readme-scribe@master
15+
env:
16+
GITHUB_TOKEN: ${{ secrets.PERSONAL_GITHUB_TOKEN }}
17+
with:
18+
template: "templates/README.md.tpl"
19+
writeTo: "README.md"
20+
21+
- uses: actions/upload-artifact@v1
22+
with:
23+
name: README.md
24+
path: README.md
25+
26+
- uses: stefanzweifel/git-auto-commit-action@v4
27+
env:
28+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
29+
with:
30+
commit_message: Update generated README
31+
branch: main
32+
commit_user_name: readme-scribe 🤖
33+
commit_user_email: [email protected]
34+
commit_author: readme-scribe 🤖 <[email protected]>

assets/xw.png

94.3 KB
Loading

templates/README.md.tpl

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
### Hi
2+
3+
I am Martin, a Cloud Consultant at Kreuzwerker in Frankfurt. I'm a DevOps Engineer and have a strong skillset in AWS. In addition to that I am also versed in building high-performant Node.js backends. I love my customers to succeed in their business and will help them by delivering top-notch software.
4+
5+
#### 📫 How to reach me
6+
In English or German...
7+
8+
- Mail: martin.wentzel[at]kreuzwerker.de
9+
10+
## Languages and Tools
11+
12+
<p>
13+
14+
<code><img width="10%" src="https://www.vectorlogo.zone/logos/golang/golang-horizontal.svg"></code>
15+
<code><img width="10%" src="https://www.vectorlogo.zone/logos/typescriptlang/typescriptlang-official.svg"></code>
16+
<code><img width="10%" src="https://www.vectorlogo.zone/logos/nodejs/nodejs-horizontal.svg"></code>
17+
<br />
18+
<code><img width="10%" src="https://www.vectorlogo.zone/logos/amazon_aws/amazon_aws-ar21.svg"></code>
19+
<code><img width="10%" src="https://www.vectorlogo.zone/logos/terraformio/terraformio-ar21.svg"></code>
20+
<code><img width="10%" src="https://www.vectorlogo.zone/logos/gnu_bash/gnu_bash-ar21.svg"></code>
21+
<br />
22+
<code><img width="10%" src="https://www.vectorlogo.zone/logos/kubernetes/kubernetes-ar21.svg"></code>
23+
<code><img width="10%" src="https://www.vectorlogo.zone/logos/docker/docker-ar21.svg"></code>
24+
<code><img width="10%" src="https://www.vectorlogo.zone/logos/vuejs/vuejs-ar21.svg"></code>
25+
<br />
26+
27+
</p>
28+
29+
### 🔭 Latest releases I've contributed to
30+
{{range recentReleases 5}}
31+
- [{{.Name}}]({{.URL}}) ([{{.LastRelease.TagName}}]({{.LastRelease.URL}}), {{humanize .LastRelease.PublishedAt}}) - {{.Description}}
32+
{{ else }}
33+
... no contributions yet. But they are in the making
34+
{{- end}}

0 commit comments

Comments
 (0)