2021-12-13 21:04:21 +00:00
|
|
|
name: 'Nightly'
|
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
# * is a special character in YAML so you have to quote this string
|
|
|
|
- cron: '0 12 * * *'
|
2021-12-14 16:47:00 +00:00
|
|
|
workflow_dispatch:
|
2021-12-13 21:04:21 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
stat:
|
|
|
|
if: github.repository_owner == 'withastro'
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Check out code using Git
|
2022-03-09 16:12:12 +00:00
|
|
|
uses: actions/checkout@v3
|
2022-03-08 21:46:11 +00:00
|
|
|
|
|
|
|
- name: Setup PNPM
|
2022-03-09 16:12:12 +00:00
|
|
|
uses: pnpm/action-setup@v2.2.1
|
2022-03-08 21:46:11 +00:00
|
|
|
|
|
|
|
- name: Setup Node
|
2022-03-09 16:12:12 +00:00
|
|
|
uses: actions/setup-node@v3
|
2021-12-13 21:04:21 +00:00
|
|
|
with:
|
|
|
|
node-version: 16
|
2022-03-08 21:46:11 +00:00
|
|
|
cache: 'pnpm'
|
|
|
|
|
2022-03-09 16:12:12 +00:00
|
|
|
- name: Install dependencies
|
2022-03-08 21:46:11 +00:00
|
|
|
run: pnpm install
|
|
|
|
|
2021-12-13 21:04:21 +00:00
|
|
|
- name: Collect stats
|
|
|
|
run: node scripts/stats/index.js
|
|
|
|
env:
|
2022-06-27 18:02:44 +00:00
|
|
|
# Needs access to collect stats from the GitHub API
|
|
|
|
GITHUB_TOKEN: ${{ secrets.FREDKBOT_GITHUB_TOKEN }}
|
|
|
|
|
2021-12-13 21:04:21 +00:00
|
|
|
- name: Commit changes
|
|
|
|
uses: stefanzweifel/git-auto-commit-action@v4
|
|
|
|
with:
|
|
|
|
commit_message: '[ci] collect stats'
|
|
|
|
branch: ${{ github.head_ref }}
|
2022-06-27 18:02:44 +00:00
|
|
|
# Needs access to push to main
|
|
|
|
token: ${{ secrets.FREDKBOT_GITHUB_TOKEN }}
|
2021-12-13 21:04:21 +00:00
|
|
|
|
|
|
|
lockfile:
|
|
|
|
if: github.repository_owner == 'withastro'
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-03-09 16:12:12 +00:00
|
|
|
|
2021-12-13 21:04:21 +00:00
|
|
|
- name: Check out code using Git
|
2022-03-09 16:12:12 +00:00
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
2022-03-08 21:46:11 +00:00
|
|
|
- name: Setup PNPM
|
2022-03-09 16:12:12 +00:00
|
|
|
uses: pnpm/action-setup@v2.2.1
|
2022-03-08 21:46:11 +00:00
|
|
|
|
|
|
|
- name: Setup Node
|
2022-03-09 16:12:12 +00:00
|
|
|
uses: actions/setup-node@v3
|
2021-12-13 21:04:21 +00:00
|
|
|
with:
|
|
|
|
node-version: 16
|
2022-03-08 21:46:11 +00:00
|
|
|
cache: 'pnpm'
|
2022-03-09 16:12:12 +00:00
|
|
|
|
|
|
|
- name: Upgrade recursive
|
2022-03-08 21:46:11 +00:00
|
|
|
run: pnpm upgrade --recursive
|
2022-03-09 16:12:12 +00:00
|
|
|
|
2021-12-13 21:04:21 +00:00
|
|
|
- name: Create Pull Request
|
|
|
|
id: createpr
|
|
|
|
uses: peter-evans/create-pull-request@v3
|
|
|
|
with:
|
2022-03-01 05:43:52 +00:00
|
|
|
branch: ci/lockfile
|
2022-06-27 18:02:44 +00:00
|
|
|
# Access token is needed to trigger CI on this PR
|
|
|
|
token: ${{ secrets.FREDKBOT_GITHUB_TOKEN }}
|
2021-12-13 21:04:21 +00:00
|
|
|
commit-message: '[ci] update lockfile'
|
|
|
|
title: '[ci] update lockfile'
|
|
|
|
body: >
|
2022-03-09 16:12:12 +00:00
|
|
|
This PR is auto-generated by a nightly GitHub action.
|
2021-12-13 21:04:21 +00:00
|
|
|
It should automatically be merged if tests pass.
|