mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-10 09:00:07 -04:00
Merge pull request #2057 from iptv-org/patch-2023.05.2
Delete GitHub workflows
This commit is contained in:
commit
a2896acb15
236 changed files with 1557 additions and 5256 deletions
17
.github/workflows/9tv.co.il.yml
vendored
17
.github/workflows/9tv.co.il.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: 9tv.co.il
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
34
.github/workflows/_check.yml
vendored
34
.github/workflows/_check.yml
vendored
|
@ -1,34 +0,0 @@
|
||||||
name: _check
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
pull_request:
|
|
||||||
types: [opened, synchronize, reopened, edited]
|
|
||||||
concurrency:
|
|
||||||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
||||||
cancel-in-progress: true
|
|
||||||
jobs:
|
|
||||||
check:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
with:
|
|
||||||
fetch-depth: 2
|
|
||||||
- name: Download data from API
|
|
||||||
run: |
|
|
||||||
mkdir -p scripts/data
|
|
||||||
curl -L -o scripts/data/channels.json https://iptv-org.github.io/api/channels.json
|
|
||||||
- uses: tj-actions/changed-files@v35
|
|
||||||
id: files
|
|
||||||
with:
|
|
||||||
files: sites/**/*.channels.xml
|
|
||||||
- uses: actions/setup-node@v3
|
|
||||||
if: ${{ !env.ACT && steps.files.outputs.any_changed == 'true' }}
|
|
||||||
with:
|
|
||||||
node-version: 16
|
|
||||||
cache: 'npm'
|
|
||||||
- name: validate
|
|
||||||
if: steps.files.outputs.any_changed == 'true'
|
|
||||||
run: |
|
|
||||||
npm install
|
|
||||||
npm run channels:lint -- ${{ steps.files.outputs.all_changed_files }}
|
|
||||||
npm run channels:validate -- ${{ steps.files.outputs.all_changed_files }}
|
|
31
.github/workflows/_load.yml
vendored
31
.github/workflows/_load.yml
vendored
|
@ -1,31 +0,0 @@
|
||||||
name: _load
|
|
||||||
on:
|
|
||||||
workflow_call:
|
|
||||||
inputs:
|
|
||||||
site:
|
|
||||||
required: true
|
|
||||||
type: string
|
|
||||||
secrets:
|
|
||||||
APP_ID:
|
|
||||||
required: true
|
|
||||||
APP_PRIVATE_KEY:
|
|
||||||
required: true
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
- run: npm run api:load
|
|
||||||
- uses: actions/setup-node@v3
|
|
||||||
if: ${{ !env.ACT }}
|
|
||||||
with:
|
|
||||||
node-version: 16
|
|
||||||
cache: 'npm'
|
|
||||||
- run: npm install
|
|
||||||
- run: CHANNELS_PATH=sites/${{inputs.site}}/*.channels.xml npm run queue:create -- --max-clusters=1
|
|
||||||
- run: NODE_OPTIONS=--insecure-http-parser npm run cluster:load -- --timeout=30000 --cluster-id=1
|
|
||||||
- run: npm run programs:save
|
|
||||||
- uses: actions/upload-artifact@v3
|
|
||||||
with:
|
|
||||||
name: database
|
|
||||||
path: scripts/database
|
|
12
.github/workflows/_test.yml
vendored
12
.github/workflows/_test.yml
vendored
|
@ -1,12 +0,0 @@
|
||||||
name: _test
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
- run: npm run api:load
|
|
||||||
- run: npm install
|
|
||||||
- run: CHANNELS_PATH=sites/tvtv.us/tvtv.us_us.channels.xml npm run queue:create -- --max-clusters=1 --days=2
|
|
||||||
- run: NODE_OPTIONS=--insecure-http-parser npm run cluster:load -- --timeout=30000 --cluster-id=1
|
|
8
.github/workflows/_trigger.yml
vendored
8
.github/workflows/_trigger.yml
vendored
|
@ -1,8 +0,0 @@
|
||||||
name: _trigger
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
jobs:
|
|
||||||
start:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- run: echo 'Starting all workflows...'
|
|
91
.github/workflows/_update.yml
vendored
91
.github/workflows/_update.yml
vendored
|
@ -1,91 +0,0 @@
|
||||||
name: _update
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 9 * * *'
|
|
||||||
jobs:
|
|
||||||
update:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
- run: echo "BRANCH_NAME=$(date +'bot/auto-update-%s')" >> $GITHUB_OUTPUT
|
|
||||||
id: create-branch-name
|
|
||||||
- run: git config user.name 'iptv-bot[bot]'
|
|
||||||
- run: git config user.email '84861620+iptv-bot[bot]@users.noreply.github.com'
|
|
||||||
- run: git checkout -b ${{ steps.create-branch-name.outputs.BRANCH_NAME }}
|
|
||||||
- uses: tibdex/github-app-token@v1
|
|
||||||
if: ${{ !env.ACT }}
|
|
||||||
id: create-app-token
|
|
||||||
with:
|
|
||||||
app_id: ${{ secrets.APP_ID }}
|
|
||||||
private_key: ${{ secrets.APP_PRIVATE_KEY }}
|
|
||||||
- uses: actions/setup-node@v3
|
|
||||||
if: ${{ !env.ACT }}
|
|
||||||
with:
|
|
||||||
node-version: 16
|
|
||||||
cache: 'npm'
|
|
||||||
- run: npm install
|
|
||||||
- run: npm run api:load
|
|
||||||
- if: ${{ !env.ACT }}
|
|
||||||
run: GITHUB_TOKEN=${{ steps.create-app-token.outputs.token }} npm run db:load
|
|
||||||
- uses: actions/upload-artifact@v3
|
|
||||||
with:
|
|
||||||
name: database
|
|
||||||
path: scripts/database
|
|
||||||
- run: npm run guides:update
|
|
||||||
- uses: actions/upload-artifact@v3
|
|
||||||
with:
|
|
||||||
name: logs
|
|
||||||
path: scripts/logs
|
|
||||||
- run: npm run api:update
|
|
||||||
- run: npm run readme:update
|
|
||||||
- name: Commit Changes
|
|
||||||
if: ${{ !env.ACT }}
|
|
||||||
run: |
|
|
||||||
git add README.md
|
|
||||||
git commit --allow-empty -m "[Bot] Update README.md"
|
|
||||||
git status
|
|
||||||
- name: Push to origin
|
|
||||||
if: ${{ !env.ACT }}
|
|
||||||
run: |
|
|
||||||
git push -u origin ${{ steps.create-branch-name.outputs.BRANCH_NAME }}
|
|
||||||
- uses: JamesIves/github-pages-deploy-action@v4.4.1
|
|
||||||
if: ${{ !env.ACT && github.ref == 'refs/heads/master' }}
|
|
||||||
with:
|
|
||||||
branch: gh-pages
|
|
||||||
folder: .gh-pages
|
|
||||||
token: ${{ steps.create-app-token.outputs.token }}
|
|
||||||
git-config-name: iptv-bot[bot]
|
|
||||||
git-config-email: 84861620+iptv-bot[bot]@users.noreply.github.com
|
|
||||||
commit-message: '[Bot] Update guides'
|
|
||||||
single-commit: true
|
|
||||||
clean: true
|
|
||||||
- uses: JamesIves/github-pages-deploy-action@v4.4.1
|
|
||||||
if: ${{ !env.ACT && github.ref == 'refs/heads/master' }}
|
|
||||||
with:
|
|
||||||
repository-name: iptv-org/api
|
|
||||||
branch: gh-pages
|
|
||||||
folder: .api
|
|
||||||
token: ${{ steps.create-app-token.outputs.token }}
|
|
||||||
git-config-name: iptv-bot[bot]
|
|
||||||
git-config-email: 84861620+iptv-bot[bot]@users.noreply.github.com
|
|
||||||
commit-message: '[Bot] Deploy to iptv-org/api'
|
|
||||||
clean: false
|
|
||||||
- uses: repo-sync/pull-request@v2.9
|
|
||||||
if: ${{ !env.ACT && github.ref == 'refs/heads/master' }}
|
|
||||||
id: pull-request
|
|
||||||
with:
|
|
||||||
github_token: ${{ steps.create-app-token.outputs.token }}
|
|
||||||
source_branch: ${{ steps.create-branch-name.outputs.BRANCH_NAME }}
|
|
||||||
destination_branch: 'master'
|
|
||||||
pr_title: '[Bot] Daily update'
|
|
||||||
pr_body: |
|
|
||||||
This pull request is created via [update][1] workflow.
|
|
||||||
|
|
||||||
[1]: https://github.com/iptv-org/epg/actions/runs/${{ github.run_id }}
|
|
||||||
- uses: juliangruber/merge-pull-request-action@v1
|
|
||||||
if: ${{ !env.ACT && github.ref == 'refs/heads/master' && steps.pull-request.outputs.has_changed_files }}
|
|
||||||
with:
|
|
||||||
github-token: ${{ secrets.PAT }}
|
|
||||||
number: ${{ steps.pull-request.outputs.pr_number }}
|
|
||||||
method: squash
|
|
17
.github/workflows/abc.net.au.yml
vendored
17
.github/workflows/abc.net.au.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: abc.net.au
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/allente.se.yml
vendored
17
.github/workflows/allente.se.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: allente.se
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/andorradifusio.ad.yml
vendored
17
.github/workflows/andorradifusio.ad.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: andorradifusio.ad
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/arianaafgtv.com.yml
vendored
17
.github/workflows/arianaafgtv.com.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: arianaafgtv.com
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/arianatelevision.com.yml
vendored
17
.github/workflows/arianatelevision.com.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: arianatelevision.com
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/artonline.tv.yml
vendored
17
.github/workflows/artonline.tv.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: artonline.tv
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/astro.com.my.yml
vendored
17
.github/workflows/astro.com.my.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: astro.com.my
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/bein.com.yml
vendored
17
.github/workflows/bein.com.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: bein.com
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/beinsports.com.yml
vendored
17
.github/workflows/beinsports.com.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: beinsports.com
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/berrymedia.co.kr.yml
vendored
17
.github/workflows/berrymedia.co.kr.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: berrymedia.co.kr
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/bt.com.yml
vendored
17
.github/workflows/bt.com.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: bt.com
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/cablego.com.pe.yml
vendored
17
.github/workflows/cablego.com.pe.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: cablego.com.pe
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/cableplus.com.uy.yml
vendored
17
.github/workflows/cableplus.com.uy.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: cableplus.com.uy
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/canalplus-afrique.com.yml
vendored
17
.github/workflows/canalplus-afrique.com.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: canalplus-afrique.com
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/canalplus-caraibes.com.yml
vendored
17
.github/workflows/canalplus-caraibes.com.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: canalplus-caraibes.com
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/canalplus-haiti.com.yml
vendored
17
.github/workflows/canalplus-haiti.com.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: canalplus-haiti.com
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/canalplus-reunion.com.yml
vendored
17
.github/workflows/canalplus-reunion.com.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: canalplus-reunion.com
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/canalplus.com.yml
vendored
17
.github/workflows/canalplus.com.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: canalplus.com
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/cgates.lt.yml
vendored
17
.github/workflows/cgates.lt.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: cgates.lt
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/chaines-tv.orange.fr.yml
vendored
17
.github/workflows/chaines-tv.orange.fr.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: chaines-tv.orange.fr
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/clickthecity.com.yml
vendored
17
.github/workflows/clickthecity.com.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: clickthecity.com
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/compulms.com.yml
vendored
17
.github/workflows/compulms.com.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: compulms.com
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/comteco.com.bo.yml
vendored
17
.github/workflows/comteco.com.bo.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: comteco.com.bo
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/cosmote.gr.yml
vendored
17
.github/workflows/cosmote.gr.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: cosmote.gr
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/delta.nl.yml
vendored
17
.github/workflows/delta.nl.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: delta.nl
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/digiturk.com.tr.yml
vendored
17
.github/workflows/digiturk.com.tr.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: digiturk.com.tr
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/directv.com.ar.yml
vendored
17
.github/workflows/directv.com.ar.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: directv.com.ar
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/directv.com.uy.yml
vendored
17
.github/workflows/directv.com.uy.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: directv.com.uy
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/directv.com.yml
vendored
17
.github/workflows/directv.com.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: directv.com
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/dishtv.in.yml
vendored
17
.github/workflows/dishtv.in.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: dishtv.in
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/dsmart.com.tr.yml
vendored
17
.github/workflows/dsmart.com.tr.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: dsmart.com.tr
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/dstv.com.yml
vendored
17
.github/workflows/dstv.com.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: dstv.com
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/elcinema.com.yml
vendored
17
.github/workflows/elcinema.com.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: elcinema.com
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/ena.skylifetv.co.kr.yml
vendored
17
.github/workflows/ena.skylifetv.co.kr.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: ena.skylifetv.co.kr
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/epg.i-cable.com.yml
vendored
17
.github/workflows/epg.i-cable.com.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: epg.i-cable.com
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/flixed.io.yml
vendored
17
.github/workflows/flixed.io.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: flixed.io
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/foxsports.com.au.yml
vendored
17
.github/workflows/foxsports.com.au.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: foxsports.com.au
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/foxtel.com.au.yml
vendored
17
.github/workflows/foxtel.com.au.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: foxtel.com.au
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/frikanalen.no.yml
vendored
17
.github/workflows/frikanalen.no.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: frikanalen.no
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/gatotv.com.yml
vendored
17
.github/workflows/gatotv.com.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: gatotv.com
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/getafteritmedia.com.yml
vendored
17
.github/workflows/getafteritmedia.com.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: getafteritmedia.com
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/guidatv.sky.it.yml
vendored
17
.github/workflows/guidatv.sky.it.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: guidatv.sky.it
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/guide.dstv.com.yml
vendored
17
.github/workflows/guide.dstv.com.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: guide.dstv.com
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/hd-plus.de.yml
vendored
17
.github/workflows/hd-plus.de.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: hd-plus.de
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/horizon.tv.yml
vendored
17
.github/workflows/horizon.tv.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: horizon.tv
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/i.mjh.nz.yml
vendored
17
.github/workflows/i.mjh.nz.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: i.mjh.nz
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/i24news.tv.yml
vendored
17
.github/workflows/i24news.tv.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: i24news.tv
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/indihometv.com.yml
vendored
17
.github/workflows/indihometv.com.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: indihometv.com
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 7 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/ionplustv.com.yml
vendored
17
.github/workflows/ionplustv.com.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: ionplustv.com
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/ipko.com.yml
vendored
17
.github/workflows/ipko.com.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: ipko.com
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/kan.org.il.yml
vendored
17
.github/workflows/kan.org.il.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: kan.org.il
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/knr.gl.yml
vendored
17
.github/workflows/knr.gl.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: knr.gl
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/kplus.vn.yml
vendored
17
.github/workflows/kplus.vn.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: kplus.vn
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/kvf.fo.yml
vendored
17
.github/workflows/kvf.fo.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: kvf.fo
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/m.tv.sms.cz.yml
vendored
17
.github/workflows/m.tv.sms.cz.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: m.tv.sms.cz
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/magentatv.at.yml
vendored
17
.github/workflows/magentatv.at.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: magentatv.at
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/magentatv.de.yml
vendored
17
.github/workflows/magentatv.de.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: magentatv.de
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/magticom.ge.yml
vendored
17
.github/workflows/magticom.ge.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: magticom.ge
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/mako.co.il.yml
vendored
17
.github/workflows/mako.co.il.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: mako.co.il
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/maxtv.hrvatskitelekom.hr.yml
vendored
17
.github/workflows/maxtv.hrvatskitelekom.hr.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: maxtv.hrvatskitelekom.hr
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/maxtvgo.mk.yml
vendored
17
.github/workflows/maxtvgo.mk.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: maxtvgo.mk
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/mbc.net.yml
vendored
17
.github/workflows/mbc.net.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: mbc.net
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/mediagenie.co.kr.yml
vendored
17
.github/workflows/mediagenie.co.kr.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: mediagenie.co.kr
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/mediaklikk.hu.yml
vendored
17
.github/workflows/mediaklikk.hu.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: mediaklikk.hu
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/mediaset.it.yml
vendored
17
.github/workflows/mediaset.it.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: mediaset.it
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/melita.com.yml
vendored
17
.github/workflows/melita.com.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: melita.com
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/meo.pt.yml
vendored
17
.github/workflows/meo.pt.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: meo.pt
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/mewatch.sg.yml
vendored
17
.github/workflows/mewatch.sg.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: mewatch.sg
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/mi.tv.yml
vendored
17
.github/workflows/mi.tv.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: mi.tv
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/mncvision.id.yml
vendored
17
.github/workflows/mncvision.id.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: mncvision.id
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/mon-programme-tv.be.yml
vendored
17
.github/workflows/mon-programme-tv.be.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: mon-programme-tv.be
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/movistarplus.es.yml
vendored
17
.github/workflows/movistarplus.es.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: movistarplus.es
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/mtel.ba.yml
vendored
17
.github/workflows/mtel.ba.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: mtel.ba
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/mts.rs.yml
vendored
17
.github/workflows/mts.rs.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: mts.rs
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/mujtvprogram.cz.yml
vendored
17
.github/workflows/mujtvprogram.cz.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: mujtvprogram.cz
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/musor.tv.yml
vendored
17
.github/workflows/musor.tv.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: musor.tv
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/myafn.dodmedia.osd.mil.yml
vendored
17
.github/workflows/myafn.dodmedia.osd.mil.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: myafn.dodmedia.osd.mil
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/mysky.com.ph.yml
vendored
17
.github/workflows/mysky.com.ph.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: mysky.com.ph
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/mytvsuper.com.yml
vendored
17
.github/workflows/mytvsuper.com.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: mytvsuper.com
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/nos.pt.yml
vendored
17
.github/workflows/nos.pt.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: nos.pt
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/novacyprus.com.yml
vendored
17
.github/workflows/novacyprus.com.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: novacyprus.com
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/novasports.gr.yml
vendored
17
.github/workflows/novasports.gr.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: novasports.gr
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/nowplayer.now.com.yml
vendored
17
.github/workflows/nowplayer.now.com.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: nowplayer.now.com
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/nuevosiglo.com.uy.yml
vendored
17
.github/workflows/nuevosiglo.com.uy.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: nuevosiglo.com.uy
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/ontvtonight.com.yml
vendored
17
.github/workflows/ontvtonight.com.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: ontvtonight.com
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/osn.com.yml
vendored
17
.github/workflows/osn.com.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: osn.com
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/pbsguam.org.yml
vendored
17
.github/workflows/pbsguam.org.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: pbsguam.org
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/plex.tv.yml
vendored
17
.github/workflows/plex.tv.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: plex.tv
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/programacion-tv.elpais.com.yml
vendored
17
.github/workflows/programacion-tv.elpais.com.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: programacion-tv.elpais.com
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/programacion.tcc.com.uy.yml
vendored
17
.github/workflows/programacion.tcc.com.uy.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: programacion.tcc.com.uy
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/programetv.ro.yml
vendored
17
.github/workflows/programetv.ro.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: programetv.ro
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/programme-tv.net.yml
vendored
17
.github/workflows/programme-tv.net.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: programme-tv.net
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/programme-tv.vini.pf.yml
vendored
17
.github/workflows/programme-tv.vini.pf.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: programme-tv.vini.pf
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
17
.github/workflows/programme.tvb.com.yml
vendored
17
.github/workflows/programme.tvb.com.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
name: programme.tvb.com
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 3 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
workflow_run:
|
|
||||||
workflows: [_trigger]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
jobs:
|
|
||||||
load:
|
|
||||||
uses: ./.github/workflows/_load.yml
|
|
||||||
with:
|
|
||||||
site: ${{github.workflow}}
|
|
||||||
secrets:
|
|
||||||
APP_ID: ${{ secrets.APP_ID }}
|
|
||||||
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue