Skip to content

cokerrd/cliq-notify

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cliq-notify

A custom github action to send messages and files to zoho cliq


Inputs

Input Description Required
cliq-url The Zoho Cliq webhook URL Yes
message Message text to send No
file Path to a file containing message text No

If both message and file are provided, the file content will be used instead of the text input.


Outputs

Output Description
ok true if the request completed without errors

Example Usage

Send message

jobs:
  notify:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v6

      - name: notify build pipeline success
        uses: cokerrd/zoho-cliq-notification@v1
        with:
          cliq-url: ${{ secrets.CLIQ_URL }}
          message: "Pipeline complete!"

Send file

jobs:
  notify:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v6

      - name: Send vulnerability report
        uses: cokerrd/cliq-notify@v1
        with:
          cliq-url: ${{ secrets.CLIQ_URL }}
          file: ./reports/vuln.txt

Contributing

All contributions are encouraged! Check out the contributor's guide for more info :>


📝 License

This project is licensed under the MIT license .

About

A custom github action to send notifications to zoho cliq

Resources

License

Contributing

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors