Skip to content

Instantly share code, notes, and snippets.

@ElianCodes
Created March 15, 2024 07:01
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ElianCodes/9ac4011dac4172d75c94645e66c7c7f6 to your computer and use it in GitHub Desktop.
Save ElianCodes/9ac4011dac4172d75c94645e66c7c7f6 to your computer and use it in GitHub Desktop.
Upgrade your Astro integrations nightly
name: nightly
on:
schedule:
- cron: '0 0 * * *'
jobs:
upgrade:
runs-on: ubuntu-latest
env:
NODE_OPTIONS: '--max_old_space_size=4096'
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Upgrade Astro
run: pnpm dlx @astrojs/upgrade --yes
- name: PR Changes
uses: peter-evans/create-pull-request@v4
with:
branch: ci/update-astro
commit-message: 'ci: update Astro'
assignees: eliancodes
title: 'ci: update Astro'
body: Update Astro and packages to latest version
labels: ci
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment