Skip to content

Nightly

Nightly #935

Workflow file for this run

name: Nightly
on:
schedule:
- cron: '0 12 * * *'
workflow_dispatch:
jobs:
docgen:
name: Generate Reference Docs
if: github.repository_owner == 'withastro'
runs-on: ubuntu-latest
strategy:
matrix:
include:
# Default options for running with latest Astro code
- SOURCE_BRANCH: main
TARGET_BRANCH: main
LABEL: ci
PR_BRANCH: ci/docgen
PR_TITLE: 'ci: update reference docs'
# Custom options for running with Astro v5 beta code
- SOURCE_BRANCH: next
TARGET_BRANCH: 5.0.0-beta
LABEL: 5.0.0-beta,ci
PR_BRANCH: ci/docgen-beta
PR_TITLE: '[BETA] ci: update reference docs'
steps:
- name: Check out code using Git
uses: actions/checkout@v4
with:
ref: ${{ matrix.TARGET_BRANCH }}
- name: Install Tools & Dependencies
uses: ./.github/actions/install
- name: Run docgen script
run: pnpm run docgen
env:
SOURCE_BRANCH: ${{ matrix.SOURCE_BRANCH }}
- name: Create Pull Request
id: createpr
uses: peter-evans/create-pull-request@v3
with:
branch: ${{ matrix.PR_BRANCH }}
token: ${{ secrets.FREDKBOT_GITHUB_TOKEN }}
add-paths: src/content/docs/en/reference/*.mdx
commit-message: 'ci: update reference docs'
title: ${{ matrix.PR_TITLE }}
body: |
This PR is auto-generated by a nightly GitHub action to update the reference docs from source code in withastro/astro.
labels: ${{ matrix.LABEL }}
base: ${{ matrix.TARGET_BRANCH }}
error:
name: Generate Error Reference Docs
if: github.repository_owner == 'withastro'
runs-on: ubuntu-latest
strategy:
matrix:
include:
# Default options for running with latest Astro code
- SOURCE_BRANCH: main
TARGET_BRANCH: main
LABEL: ci
PR_BRANCH: ci/docgen-errors
PR_TITLE: 'ci: update error reference docs'
# Custom options for running with Astro v5 beta code
- SOURCE_BRANCH: next
TARGET_BRANCH: 5.0.0-beta
LABEL: 5.0.0-beta,ci
PR_BRANCH: ci/docgen-errors-beta
PR_TITLE: '[BETA] ci: update error reference docs'
steps:
- name: Check out code using Git
uses: actions/checkout@v4
with:
ref: ${{ matrix.TARGET_BRANCH }}
- name: Install Tools & Dependencies
uses: ./.github/actions/install
- name: Run docgen script
run: pnpm run docgen:errors
env:
SOURCE_BRANCH: ${{ matrix.SOURCE_BRANCH }}
- name: Create Pull Request
id: createpr
uses: peter-evans/create-pull-request@v3
with:
branch: ${{ matrix.PR_BRANCH }}
token: ${{ secrets.FREDKBOT_GITHUB_TOKEN }}
add-paths: src/content/docs/en/reference/*.mdx
commit-message: 'ci: update error reference docs'
title: ${{ matrix.PR_TITLE }}
body: |
This PR is auto-generated by a nightly GitHub action to update the error reference docs from source code in withastro/astro.
labels: ${{ matrix.LABEL }}
base: ${{ matrix.TARGET_BRANCH }}