This action create issues from a syndication feed (RSS or Atom).
Required the GITHUB_TOKEN secret.
Required URL of the rss.
Prefix added to issues.
Limit items date.
Labels to add, comma separated.
Log issue creation but do nothing
Aggregate all items in a single issue
Limit size of issue content
Don't create an issue if the title matches the specified regular expression (go regular expression syntax)
Don't create an issue if the content matches the specified regular expression (go regular expression syntax)
Issues number, comma separated.
uses: guilhem/rss-issues-action
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
feed: "https://cloud.google.com/feeds/kubernetes-engine-release-notes.xml"
name: rss
on:
schedule:
- cron: "0 * * * *"
jobs:
gke-release:
runs-on: ubuntu-latest
steps:
- name: rss-issues
uses: guilhem/[email protected]
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
feed: "https://cloud.google.com/feeds/kubernetes-engine-release-notes.xml"
prefix: "[GKE]"
characterLimit: "255"
dry-run: "false"
lastTime: "92h"
labels: "liens/Kubernetes"