diff options
Diffstat (limited to 'Readme.md')
-rw-r--r-- | Readme.md | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -1,5 +1,8 @@ # rss-to-gitea +Create Gitea-Issue for newest entry in Atom-Feed. +Can be used to automatically create Update-Tickets. + ## Usage ``` @@ -8,6 +11,20 @@ rsstogitea config.yml ## Configuration +* **url** Gitea-URL +* **token** API-Token, either in plain or in an environment variable with `env/<VAR>` +* **owner** Owner of the repo to create issues in +* **repo** Name of the repo to create issues in +* **label** Label to add to created Issue +* **feeds** list of + * **url** Atom-Feed URL + * **name** Name of the Feed. Used as issue-name prefix + * **assign** User to assign the issue to + * **exclude** List. If name of item contains one or more, item is ignored. Not Regex. + * **include** List. Item is ignored if title does not contain all strings. Not Regex. + +### Example + ```yaml --- url: 'https://gitea.example.com' |