Skip to content

Update Warps

Update Warps #57

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@v4
- uses: actions/setup-node@v4
with:
node-version: 18.4.0
- run: "node get-warp-data.js"
- run: echo "message=Warp update @ $(date +%Y%m%dT%H:%M:%S%Z)" >> "$GITHUB_ENV"
- uses: EndBug/add-and-commit@v9
with:
default_author: github_actions
message: ${{ env.message }}