Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/codesandtags/rss-generator-action
- Owner: codesandtags
- License: mit
- Created: 2024-02-10T04:36:31.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-02-10T05:08:08.000Z (12 months ago)
- Last Synced: 2024-04-16T07:14:18.463Z (9 months ago)
- Topics: github-actions, python, rss
- Language: Python
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```