Skip to content

Daily Skill of the Day #10

Daily Skill of the Day

Daily Skill of the Day #10

Workflow file for this run

name: Daily Skill of the Day
on:
schedule:
# Run every day at 9am UTC
- cron: '0 9 * * *'
workflow_dispatch:
jobs:
skill-of-the-day:
name: Post Daily Skill Spotlight
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Pick skill of the day and create issue
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: node scripts/skill-of-the-day.js