Replies: 1 comment 1 reply
-
@LDdvlp this is already supported you can acheive this by doing: name: Latest blog post workflow
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
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 dev.to posts
uses: gautamkrishnar/blog-post-workflow@master
with:
feed_list: "https://dev.to/feed/gautamkrishnar/"
template: "$counter. [$title]($url)"
tag_post_pre_newline: true |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Bonjour Gautam,
Could you please create an option to have a numbered list intead of a bulleted list between
<!-- BLOG-POST-LIST:START -->
and<!-- BLOG-POST-LIST:END -->
?Example :
This list :
instead of :
The option might be
numbered_list: false
by default.Or maybe does it exist a tip to do this ?
Thank you,
Loïc.
Beta Was this translation helpful? Give feedback.
All reactions