Skip to content

Update Warps

Update Warps #217

Workflow file for this run

name: "Update Warps"
on:
workflow_dispatch:
schedule:
- cron: 0 0 */3 * *
permissions:
contents: write
env:
message: "update"
jobs:
update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: 24.14.0
- run: "node warp-data/get-warp-data.js"
- run: echo "message=Warp update @ $(date +%Y%m%dT%H:%M:%S%Z)" >> "$GITHUB_ENV"
- uses: EndBug/add-and-commit@a94899bca583c204427a224a7af87c02f9b325d5 # v9.1.4
with:
default_author: github_actions
message: ${{ env.message }}