SecOpsNews / news

RSS items as GitHub Issues for the discerning engineering leader or security professional
MIT License
30 stars 0 forks source link
feed github-actions issue-tracker issues rss

Reader

A repository to track third party (RSS) feeds for various security sites as GitHub issues. Quite Noisy.

Adding a new feed

Add to the relevant action yml file the following code; replacing SourceName with the provider as needed, including URL of the RSS/Atom/Json feed + any labels as appropriate

SourceName:
    runs-on: ubuntu-latest
    steps:
    - uses: guilhem/rss-issues-action@0.5.2
      continue-on-error: true
      with:
        repo-token: ${{ secrets.GITHUB_TOKEN }}
        feed: "[URL]"
        prefix: "[SourceName]"
        dry-run: "false"
        lastTime: "24h"
        labels: "SourceName, [App, DevOps]"