Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/codesandtags/rss-generator-action

Custom Github Action to run the RSS generator
https://github.com/codesandtags/rss-generator-action

github-actions python rss

Last synced: 4 days ago
JSON representation

Custom Github Action to run the RSS generator

Awesome Lists containing this project

README

        

# RSS Generator Action

Custom Github Action to run the RSS generator.

## How to use it?

In your `workflow.yml` o Github actions YML file, include the `step`

```yaml
- name: Run RSS Generator
uses: codesandtags/rss-generator-action@main
```

Here is a full example:

```yaml
name: Generate RSS Feed
on: [push]

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Run RSS Generator
uses: codesandtags/rss-generator-action@main

```