diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2022-02-10 20:42:19 +0100 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2022-02-10 20:42:19 +0100 |
commit | 92a7ec95c37418959dddd28904fff196870e4454 (patch) | |
tree | 4f3c92811685542000d50163988c20fdbfdfbbd6 /Readme.md | |
parent | 259399bc103f61daee068eefcd1f2d205a1c6816 (diff) | |
download | atom_to_gitea-92a7ec95c37418959dddd28904fff196870e4454.tar.gz |
Readme
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' |