Update clean.yml

This commit is contained in:
freearhey 2021-05-06 18:42:13 +03:00
parent 126835d2ed
commit c068fae5d1

View File

@ -10,13 +10,13 @@ jobs:
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,
@ -172,16 +172,17 @@ jobs:
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v2 uses: actions/checkout@v2
with: - name: Create Branch
ref: bot/patch-${{ github.run_number }} run: |
git config user.name github-actions
git config user.email github-actions@github.com
git checkout -b 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 - name: Commit Changes
run: | run: |
git config user.name github-actions
git config user.email github-actions@github.com
git add . git add .
git diff-index --quiet HEAD || git commit -m "[Bot] Update ${{ matrix.country }}.m3u" git diff-index --quiet HEAD || git commit -m "[Bot] Update ${{ matrix.country }}.m3u"
git pull git pull
@ -193,7 +194,7 @@ jobs:
- name: Checkout - name: Checkout
uses: actions/checkout@v2 uses: actions/checkout@v2
with: with:
ref: bot/patch-${{ github.run_number }} 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: