Update clean.yml

This commit is contained in:
freearhey 2021-05-06 21:16:23 +03:00
parent ebaa9ec21e
commit 0e75f1ff4a

View File

@ -2,19 +2,19 @@ name: clean
on: on:
workflow_dispatch: workflow_dispatch:
jobs: jobs:
update: clean:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
country: [ country: [
ad, ad
ae, # ae,
af, # af,
al, # al,
am, # am,
ao, # ao,
ar, # ar,
at # at
# au, # au,
# aw, # aw,
# az, # az,
@ -167,39 +167,16 @@ jobs:
] ]
max-parallel: 1 max-parallel: 1
steps: steps:
- name: Create Branch
uses: peterjgrainger/action-create-branch@v2.0.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
branch: 'bot/patch-1'
- name: Checkout - name: Checkout
uses: actions/checkout@v2 uses: actions/checkout@v2
with:
ref: bot/patch-1
- name: Install Dependencies - name: Install Dependencies
run: npm install run: npm install
- name: Remove Broken Links - name: Remove Broken Links
run: node scripts/clean.js --country=${{ matrix.country }} run: node scripts/clean.js --country=${{ matrix.country }}
- name: Commit Changes
run: |
git config user.name github-actions
git config user.email github-actions@github.com
git add .
git diff-index --quiet HEAD || git commit -m "[Bot] Update ${{ matrix.country }}.m3u"
git pull
git push
create-pr:
runs-on: ubuntu-latest
needs: update
steps:
- name: Checkout
uses: actions/checkout@v2
with:
ref: bot/patch-1
- name: Create Pull Request - name: Create Pull Request
uses: peter-evans/create-pull-request@v3 uses: peter-evans/create-pull-request@v3
with: with:
branch: bot/remove-broken-links
title: '[Bot] Remove broken links' title: '[Bot] Remove broken links'
body: | body: |
This pull request is created automatically. This pull request is created automatically.