Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/maheshrayas/action-release-notifier
Github action to get notified when an open-source Github project releases a new version
https://github.com/maheshrayas/action-release-notifier
Last synced: 15 days ago
JSON representation
Github action to get notified when an open-source Github project releases a new version
- Host: GitHub
- URL: https://github.com/maheshrayas/action-release-notifier
- Owner: maheshrayas
- License: mit
- Created: 2021-09-20T11:57:32.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-05-31T13:28:22.000Z (over 2 years ago)
- Last Synced: 2024-10-20T10:13:15.714Z (about 1 month ago)
- Language: Rust
- Homepage:
- Size: 51.8 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
action-release-notifier
## Motivation
Since most of applications these days rely on upstream opensource Github Projects, we needed a way to get notificed when a new release of upstream was done and easily configured to any number of github projects using Github Actions.
## Configuration in GHA workflow
```bash
name: release-notifieron:
workflow_dispatch: null
schedule:
# Scheduled everyday At 00:00
- cron: '0 0 * * *'jobs:
clean:
runs-on: ubuntu-latest
steps:
- name: release-notifier-gh
uses: maheshrayas/[email protected]
with:
github_token: '${{ secrets.GITHUB_TOKEN }}'
type: Github
repo: 'https://github.com/kubernetes/kubernetes,https://github.com/kubernetes-sigs/kustomize,https://github.com/helm/helm,https://github.com/istio/istio'
days: 1 #optional field, default 1 day, , make sure you set the cron appropriately, Example if you want to check for release once in 7 days, set days: 7 and cron schedule to run once in 7 days
labels: 'release'- name: release-notifier-rss
uses: maheshrayas/[email protected]
with:
github_token: '${{ secrets.GITHUB_TOKEN }}'
type: Rss
repo: 'https://cloud.google.com/feeds/anthosconfig-release-notes.xml'
days: 1 #optional field, default 1 day, , make sure you set the cron appropriately, Example if you want to check for release once in 7 days, set days: 7 and cron schedule to run once in 7 days
labels: 'release,google'
```## Notification
* GH Issue : A Github Issue would be created in the configured repo stating about the new release that found.
* Slack Notification : TODO## Credits
[Michael Fornaro](https://github.com/xUnholy) for the guidance and improvements.