Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rafaelgss/notify-me
Get notified when a task execute with success
https://github.com/rafaelgss/notify-me
Last synced: 12 days ago
JSON representation
Get notified when a task execute with success
- Host: GitHub
- URL: https://github.com/rafaelgss/notify-me
- Owner: RafaelGSS
- License: mit
- Created: 2023-06-21T22:37:21.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-04T18:30:24.000Z (3 months ago)
- Last Synced: 2024-11-01T12:52:02.553Z (19 days ago)
- Language: Shell
- Homepage:
- Size: 9.77 KB
- Stars: 8
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# notify-me
Runs your command every 1 min until it gets succeeded (exit 0) and then pops up a custom message.
## Dependencies
```sh
$ apt-get install libnotify-dev
```## Install
```console
$ sudo make install
```## notify-me
```console
$ notify-me $COMMAND $MESSAGE
```Example alerting when the README2.md file is created
```console
$ notify-me '[ -f "./README2.md" ]' "README2.md was created"
```![](./example.png)
## notify-me-ci
This one is specific to Node.js contributors. It notifies whenever a CI is concluded -- When the result isn't "PENDING".
```console
$ notify-me-ci $CIURL
``````console
$ notify-me-ci $CIURL "My CI finally Finished"
```Example:
```console
$ notify-me-ci https://ci.nodejs.org/job/node-test-pull-request/52342/
```