Skip to content

Latest commit

 

History

History
50 lines (36 loc) · 1.46 KB

README.md

File metadata and controls

50 lines (36 loc) · 1.46 KB

None contributed alert action

license GitHub Tag Code size CI market

❗ This action will send an email to alert 📣 you when today you do not contribute to Github

Inputs

email

Required Your email address to be sent an alert email.

Outputs

message

The result message.

Example usage

uses: hienlh/[email protected]
with:
  email: "[email protected]"

Full example

name: None contributed alert

on:
  workflow_dispatch:
  schedule:
    # Runs at 12pm UTC => 19pm UTC+7
    - cron: "0 12 * * *"

jobs:
  none-contributed-alert:
    name: None contributed alert
    runs-on: ubuntu-latest
    steps:
      - uses: hienlh/[email protected]
        with:
          email: "[email protected]"