forked from guilhem/rss-issues-action
-
Notifications
You must be signed in to change notification settings - Fork 6
/
action.yml
36 lines (36 loc) · 1.03 KB
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: "rss-to-issues"
author: "Johannes Schindelin, Guilhem Lettron"
description: "Create Issues from RSS/Atom feeds"
branding:
icon: "rss"
color: "orange"
inputs:
github-token:
description: "The GITHUB_TOKEN secret"
required: true
feed:
description: "URL of the RSS/Atom feed"
required: true
max-age:
description: "Only look at feed items younger than this"
required: true
prefix:
description: "Prefix added to the created issues' titles"
labels:
description: "Labels to add, comma separated"
dry-run:
description: "Log issue creation but do nothing"
aggregate:
description: "Aggregate all items in a single issue"
character-limit:
description: "Limit the issue contents' size"
title-pattern:
description: "Limit to feed items whose titles match this regular expression"
content-pattern:
description: "Limit to feed items whose contents match this regular expression"
outputs:
issues:
description: "issue IDs, comma separated"
runs:
using: "node20"
main: "dist/index.js"