-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
1 changed file
with
28 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,28 @@ | ||
name: Read List Generate | ||
on: | ||
schedule: # Run workflow automatically | ||
- cron: '0 * * * *' # Runs every hour, on the hour | ||
workflow_dispatch: # Run workflow manually (without waiting for the cron to be called), through the Github Actions Workflow page directly | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
update-readme-with-blog: | ||
name: Update this repo's README with latest blog posts | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Pull in Blog posts | ||
uses: gautamkrishnar/blog-post-workflow@v1 | ||
with: | ||
max_post_count: 9 | ||
committer_username: "github-actions[bot]" | ||
committer_email: "github-actions[bot]@users.noreply.github.com" | ||
retry_count: 2 | ||
rand_seed: "seed2" | ||
comment_tag_name: "blog" | ||
feed_list: "https://zishu.me/index.xml" | ||
template: "$newline- $randomEmoji(๐ฏ,๐ฅ,๐ซ,๐,๐ฎ,๐,๐ฅณ,๐ป,๐งฐ,๐,๐ฅฐ,๐ง,๐ค,๐,๐ฅธ,๐คฉ,๐ค,๐ค,๐ซฃ,๐คญ,๐ค ,๐น,๐บ,๐คก,๐ค,๐,๐บ,๐ซถ,๐,๐ช,๐,๐,๐ง ,๐งโ๐ซ,๐จโ๐ซ,๐,๐งโ๐ป,๐ฅท,๐,๐ด,๐ผ,๐,๐ป,๐ต,๐,๐ฆ,๐ฆ,๐ฆ ,๐ฆ,๐ฆฃ,๐,๐ฆ,๐ฆ,๐,๐ฆฉ,๐ฒ,๐,๐,๐,๐,๐,๐ฌ,๐ญ,๐,๐ฆ,โฝ๏ธ,๐ฝ,๐ก,๐,๐,๐ก,๐ฏ,๐ช,๐งฐ,โ๏ธ,๐ญ,๐ช,๐,๐,) [$title]($url) | $date" |