-
Notifications
You must be signed in to change notification settings - Fork 6
50 lines (47 loc) · 1.67 KB
/
version-check.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
50
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Check for logo updates
on:
schedule:
- cron: '0 8,12,16,20 * * *'
push:
branches: [main]
paths:
- 'data/**'
- 'raw/**'
- scripts/**
- 'viewer/**'
- 'package.json'
pull_request:
branches: [main]
jobs:
check-dropbox:
runs-on: ubuntu-latest
steps:
- name: Checkout gh-pages branch
uses: actions/checkout@v4
with:
ref: main
- name: Control branch
run: |
git checkout -b control-branch
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Set Env
run: |
touch .env
echo APP_KEY=${{ secrets.APP_KEY }} >> .env
echo APP_SECRET=${{ secrets.APP_SECRET }} >> .env
echo DROPBOX=${{ secrets.DROPBOX }} >> .env
- name: Install Packages
run: pnpm install
- name: Lint
run: pnpm run lint
- name: Version Check
run: pnpm run version-check
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v5
id: auto-commit-action
with:
commit_message: Fetch updated logos from Dropbox
commit_options: '--no-verify --signoff'