mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2024-11-10 01:01:55 +01:00
31 lines
No EOL
1 KiB
YAML
31 lines
No EOL
1 KiB
YAML
name: update invidious
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '0 0 1 * *' # check every month
|
|
|
|
jobs:
|
|
check-list:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: recursive
|
|
- name: Download instance lists
|
|
run: |
|
|
wget https://api.invidious.io/instances.json -O ci/invidious_instances.json
|
|
wget https://github.com/TeamPiped/piped-uptime/raw/master/history/summary.json -O ci/piped_instances.json
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
- name: "Run CI"
|
|
run: npm run ci:invidious
|
|
|
|
- name: Create pull request to update list
|
|
uses: peter-evans/create-pull-request@2b011faafdcbc9ceb11414d64d0573f37c774b04
|
|
# v4.2.3
|
|
with:
|
|
commit-message: Update Invidious List
|
|
author: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
|
|
branch: ci/update_invidious_list
|
|
title: Update Invidious List
|
|
body: Automated Invidious list update |