lovelyCARDINAL/WikiBots

View on GitHub
.github/workflows/2h.yaml

Summary

Maintainability
Test Coverage
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