Skip to content

Stats

Stats #1

Workflow file for this run

name: Stats
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
jobs:
update_wiki_stats:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
path: playlet
- name: Checkout Wiki
uses: actions/checkout@v4
with:
repository: ${{ github.repository }}.wiki
path: playlet.wiki
- name: Configure repo
run: |
git config --local user.email "[email protected]"
git config --local user.name "github-action wiki updater"
with:

Check failure on line 27 in .github/workflows/stats.yml

View workflow run for this annotation

GitHub Actions / Stats

Invalid workflow file

The workflow is not valid. .github/workflows/stats.yml (Line: 27, Col: 9): Unexpected value 'with'
path: playlet.wiki
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: "npm"
- name: Install dependencies
run: npm ci
working-directory: ./playlet
- name: Download attachements
run: node tools/download-stats.js
working-directory: ./playlet
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GMAIL_CREDENTIALS: ${{ secrets.GMAIL_CREDENTIALS }}
GMAIL_USER: ${{ secrets.GMAIL_USER }}
GMAIL_LABEL: ${{ secrets.GMAIL_LABEL }}
- name: Update wiki
run: git add "." && git commit -m "Update stats" --no-verify && git push || true
working-directory: ./playlet.wiki