Skip to content
This repository has been archived by the owner on Jul 24, 2023. It is now read-only.

Daily dad joke

Daily dad joke #663

Workflow file for this run

name: Daily dad joke
on:
workflow_dispatch:
schedule:
- cron: "0 14 * * 1-5"
jobs:
joke:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
name: Checkout the repo
- uses: actions/setup-node@v1
name: Setup node
with:
node-version: "12"
- run: yarn install
name: Install dependencies
- run: yarn joke
env:
SLACK_URL: ${{ secrets.SLACK_URL }}