-
Notifications
You must be signed in to change notification settings - Fork 1
39 lines (36 loc) · 955 Bytes
/
2h.yaml
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
name: "[hourly] 2h"
# Clean/redirectSuppress.js
on:
schedule:
- cron: "58 */2 * * *" # Every 2 hours
workflow_dispatch:
inputs:
task:
type: choice
required: true
options:
- "redirect-suppression"
env:
MOEGIRL_API_USER_AGENT: ${{ secrets.MOEGIRL_API_USER_AGENT }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
redirect-suppression:
if: |
github.event_name == 'schedule' ||
github.event.inputs.task == 'redirect-suppression'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set Node Version
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Run Script
env:
ZH_ABOT: ${{ secrets.ZH_ABOT }}
CM_ABOT: ${{ secrets.CM_ABOT }}
run: node src/Clean/redirectSuppress.js