mirror of
https://github.com/ManiMatter/decluttarr.git
synced 2026-04-18 05:54:00 +02:00
23 lines
461 B
YAML
23 lines
461 B
YAML
name: Check Untagged Versions
|
|
|
|
on:
|
|
workflow_dispatch: # Trigger manually
|
|
|
|
jobs:
|
|
check_versions:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Set up Node.js
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: '14'
|
|
|
|
- name: Install dependencies
|
|
run: npm install
|
|
|
|
- name: Run the script
|
|
run: node .github/workflows/versionCleanup.js
|