-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (41 loc) · 1.45 KB
/
nightly.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# 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