Skip to content

.github/workflows/run.yml #769

.github/workflows/run.yml

.github/workflows/run.yml #769

Workflow file for this run

on:
schedule:
- cron: '5 12 * * 3' # 12:05 UTC, Weekly on a Wednesday
workflow_dispatch:
jobs:
daniel_the_manual_spaniel:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: ruby/setup-ruby@c4e5b1316158f92e3d49443a9d58b31d25ac0f8f # v1.306.0
with:
bundler-cache: true
- run: bundle exec rake notify:expired
env:
REALLY_POST_TO_SLACK: ${{ (github.event_name == 'schedule') && 1 || 0 }}
SLACK_TOKEN: ${{ secrets.SLACK_TOKEN }}