Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fabasoad/icq-notify-action
ICQ Notify GitHub Action
https://github.com/fabasoad/icq-notify-action
github-action github-actions icq icq-bot
Last synced: 2 months ago
JSON representation
ICQ Notify GitHub Action
- Host: GitHub
- URL: https://github.com/fabasoad/icq-notify-action
- Owner: fabasoad
- License: mit
- Created: 2021-01-25T13:03:49.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-09-29T07:28:40.000Z (3 months ago)
- Last Synced: 2024-10-15T17:23:52.861Z (3 months ago)
- Topics: github-action, github-actions, icq, icq-bot
- Language: TypeScript
- Homepage:
- Size: 9.08 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# ICQ Notify GitHub Action
[![Stand With Ukraine](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/badges/StandWithUkraine.svg)](https://stand-with-ukraine.pp.ua)
![GitHub release](https://img.shields.io/github/v/release/fabasoad/icq-notify-action?include_prereleases)
![unit-tests](https://github.com/fabasoad/icq-notify-action/actions/workflows/unit-tests.yml/badge.svg)
![functional-tests](https://github.com/fabasoad/icq-notify-action/actions/workflows/functional-tests.yml/badge.svg)
![security](https://github.com/fabasoad/icq-notify-action/actions/workflows/security.yml/badge.svg)
![linting](https://github.com/fabasoad/icq-notify-action/actions/workflows/linting.yml/badge.svg)
[![Maintainability](https://api.codeclimate.com/v1/badges/1827148121eb4f330c1b/maintainability)](https://codeclimate.com/github/fabasoad/icq-notify-action/maintainability)
[![Test Coverage](https://api.codeclimate.com/v1/badges/1827148121eb4f330c1b/test_coverage)](https://codeclimate.com/github/fabasoad/icq-notify-action/test_coverage)
[![Known Vulnerabilities](https://snyk.io/test/github/fabasoad/icq-notify-action/badge.svg?targetFile=package.json)](https://snyk.io/test/github/fabasoad/icq-notify-action?targetFile=package.json)[ICQ Notify](https://github.com/fabasoad/icq-notify-action) GitHub Action.
## Inputs
| Name | Required | Description | Default | Type |
|---------|----------|--------------------------------------------|---------|------------------|
| token | Yes | ICQ API token | | _<String>_ |
| to | Yes | Recipient. Can be chat id or user nickname | | _<String>_ |
| message | No | Text message | | _<String>_ |
| file | No | File message | | _<String>_ |## Example
### Usage
```yaml
name: ICQ Notifyon: push
jobs:
job_1:
name: Example
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- uses: fabasoad/icq-notify-action@main
with:
token: ${{ secrets.ICQ_TOKEN }}
to: ${{ secrets.ICQ_TO }}
message: 'Hello from GitHub Action'
file: README.md
```### Result
![Result](screenshot.png)