30 lines
881 B
YAML
30 lines
881 B
YAML
name: 'Collect Stats'
|
|
|
|
on:
|
|
schedule:
|
|
# * is a special character in YAML so you have to quote this string
|
|
- cron: '0 12 * * *'
|
|
|
|
jobs:
|
|
stat:
|
|
if: github.repository == 'snowpackjs/astro'
|
|
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: 'yarn'
|
|
- name: Install dependencies
|
|
run: yarn install --frozen-lockfile --ignore-engines --ignore-scripts
|
|
- name: Collect stats
|
|
run: node scripts/stats/index.js
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: Commit changes
|
|
uses: stefanzweifel/git-auto-commit-action@v4
|
|
with:
|
|
commit_message: '[ci] collect stats'
|
|
branch: ${{ github.head_ref }}
|