Monitor RSS feed #436
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
--- | |
name: Monitor RSS feed | |
on: | |
schedule: | |
- cron: "0 * * * *" # hourly | |
jobs: | |
rss-monitor: | |
runs-on: ubuntu-latest | |
steps: | |
# TODO: This action outputs a comma separated list of issue numbers | |
# TODO: Use that to run the follow up action instead of using the separate `rss-notifier.yml` workflow | |
# TODO: Separate release blog posts and use different labels/discord channel for them | |
- name: RSS to issues | |
uses: git-for-windows/rss-to-issues@v0 | |
with: | |
github-token: ${{ secrets.GH_BOT_TOKEN }} | |
feed: https://lizardbyte.github.io/feed.xml | |
character-limit: 0 | |
dry-run: false | |
max-age: 48h | |
labels: blog | |
url-only: true |