Skip to content

Commit

Permalink
Create rss-multi.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
zen0bit authored Feb 15, 2024
1 parent d58f1c2 commit 0404408
Showing 1 changed file with 78 additions and 0 deletions.
78 changes: 78 additions & 0 deletions .github/workflows/rss-multi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
--- # RSS feed
name: Monitor new OS versions

on:
workflow_dispatch:
jobs:
alma-release:
runs-on: ubuntu-latest
steps:
- uses: git-for-windows/rss-to-issues@v0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
feed: https://almalinux.org/blog/index.xml
prefix: "[Git]"
character-limit: 255
dry-run: false
max-age: 48h
labels: alma
alpine-release:
runs-on: ubuntu-latest
steps:
- uses: git-for-windows/rss-to-issues@v0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
feed: https://alpinelinux.org/atom.xml
prefix: "[Git]"
character-limit: 255
dry-run: false
max-age: 48h
labels: alpine
android-release:
runs-on: ubuntu-latest
steps:
- uses: git-for-windows/rss-to-issues@v0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
feed: https://osdn.net/projects/android-x86/releases/rss
prefix: "[Git]"
character-limit: 255
dry-run: false
max-age: 48h
labels: android
antix-release:
runs-on: ubuntu-latest
steps:
- uses: git-for-windows/rss-to-issues@v0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
feed: https://sourceforge.net/projects/antix-linux/rss?path=/Final/antiX-23
prefix: "[Git]"
character-limit: 255
dry-run: false
max-age: 48h
labels: antix
arch-release:
runs-on: ubuntu-latest
steps:
- uses: git-for-windows/rss-to-issues@v0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
feed: https://archlinux.org/feeds/releases/
prefix: "[Git]"
character-limit: 255
dry-run: false
max-age: 48h
labels: arch
distrowatch:
runs-on: ubuntu-latest
steps:
- uses: git-for-windows/rss-to-issues@v0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
feed: https://distrowatch.com/news/dwd.xml
prefix: "[Git]"
character-limit: 255
dry-run: false
max-age: 48h
labels: distrowatch

0 comments on commit 0404408

Please sign in to comment.