https://github.com/rafaelgss/notify-me
Get notified when a task execute with success
https://github.com/rafaelgss/notify-me
Last synced: 3 months 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 (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-03T17:16:25.000Z (7 months ago)
- Last Synced: 2025-03-29T03:41:31.076Z (3 months ago)
- Language: Shell
- Homepage:
- Size: 9.77 KB
- Stars: 9
- 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"
```
## 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/
```