blob: b99ea7a3a23a4cfe76ebe344f3c4777ef848cf33 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
name: Add blog
on:
push:
branches:
- master
schedule:
- cron: "41 * * * *"
workflow_dispatch:
permissions:
contents: write
jobs:
update-readme:
name: Update README
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Pull in blog posts
uses: gautamkrishnar/blog-post-workflow@v1
with:
feed_list: "https://mattstrapp.net/posts/index.xml"
committer_username: "Matt Strapp"
committer_email: "matt@mattstrapp.net"
commit_message: "Add a new blog post or two or ten"
|