Skip to content

Run every day at 08:00 #206

Run every day at 08:00

Run every day at 08:00 #206

Workflow file for this run

name: Run every day at 08:00
on:
schedule:
- cron: "0 8 * * *"
push:
branches:
- main
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: "stable"
- run: go run .
env:
SLACK_AUTH_TOKEN: ${{ secrets.SLACK_AUTH_TOKEN }}