Nightly #85
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://github.com/withastro/astro/blob/main/.github/workflows/nightly.yml#L33-L70 | |
name: 'Nightly' | |
on: | |
schedule: | |
# Runs at 12:00 UTC every sunday | |
- cron: '0 12 * * 0' | |
workflow_dispatch: | |
jobs: | |
lockfile: | |
if: github.repository_owner == 'tjheffner' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code using Git | |
uses: actions/checkout@v2 | |
- name: Set Node version to 16 | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 16 | |
cache: 'npm' | |
- name: Clear lockfile | |
run: rm -rf package-lock.json node_modules | |
- name: Install dependencies | |
run: npm install --ignore-engines --ignore-scripts | |
- name: Create Pull Request | |
id: createpr | |
uses: peter-evans/create-pull-request@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
commit-message: '[ci] update lockfile' | |
title: '[ci] update lockfile' | |
body: > | |
This PR is auto-generated by a nightly GitHub action. | |
It should automatically be merged if tests pass. | |
- name: Mark Pull Request for Auto-Merge | |
if: steps.createpr.outputs.pull-request-operation == 'created' | |
uses: peter-evans/enable-pull-request-automerge@v1 | |
with: | |
# token in /settings/secrets/actions | |
token: ${{ secrets.GH_TOKEN }} | |
pull-request-number: ${{ steps.createpr.outputs.pull-request-number }} | |
merge-method: squash |