Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 849 Bytes

README.md

File metadata and controls

37 lines (29 loc) · 849 Bytes

Jarvis action status report action

This action send telegram message with action status

Usage

Here's an example of how to use this action in a workflow file:

name: Example Workflow
jobs:
  lint:
    name: Lint
    runs-on: ubuntu-latest
    permissions:
      contents: read
      actions: read
    steps:
      - name: Check rubocop
        run: bundle exec rubocop
      - uses: rubycats-com/jarvis-report-action@main
        if: success() || failure()
        with:
          report-to: ${{ secrets.JARVIS_TELEGRAM_REPORT_TO }}
          token: ${{ secrets.JARVIS_TELEGRAM_TOKEN }}

Inputs

Input Required Description
report-to true Telegram chat id
token true Telegram bot token

Outputs

No outputs in this action