Skip to content

Nightly

Nightly #525

Workflow file for this run

name: Nightly
on:
schedule:
- cron: "0 10 * * *"
workflow_dispatch:
jobs:
integrations:
name: Update Integrations
if: github.repository_owner == 'withastro'
runs-on: ubuntu-latest
steps:
- name: Check out code using Git
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup Node.js & install dependencies
uses: ./.github/actions/setup-node-pnpm
- name: Install dev dependencies
run: pnpm install
- name: Search NPM for new and deprecated integrations
run: pnpm run update:integrations
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Format generated files
run: pnpm lint
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@b863ae1933cb653a53c021fe36dbb774e1fb9403 # v5.2.0
with:
commit_message: "ci: safe update for existing themes & integrations"