forked from zerodytrash/YouTube-Internal-Clients
-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (41 loc) · 1.34 KB
/
update.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Update responses folder
on:
workflow_dispatch:
jobs:
bruteforce:
strategy:
fail-fast: false
matrix:
client: [1,2,3,5,7,8,10,13,14,15,16,18,19,21,23,26,27,28,29,30,31,33,38,39,41,42,43,55,56,57,58,59,60,61,62,63,64,65,67,68,69,70,71,72,74,75,76,77,80,84,85,87,88,89,90,93,94,95,98,99,100,101]
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
with:
ref: 'main'
- name: Update responses folder
run: python innerbrute.py ${{ matrix.client }}
- uses: EndBug/add-and-commit@v9
id: commit
continue-on-error: true
with:
message: 'Add clients for ${{ matrix.client }}'
pull: '--rebase --autostash'
- name: re-commit
id: commit2
if: steps.commit.outcome == 'failure'
continue-on-error: true
run: git pull --rebase&&git push
- name: re-commit
id: commit3
if: steps.commit2.outcome == 'failure'
continue-on-error: true
run: git pull --rebase&&git push
- name: re-commit
id: commit4
if: steps.commit3.outcome == 'failure'
continue-on-error: true
run: git pull --rebase&&git push
- name: re-commit
if: steps.commit4.outcome == 'failure'
run: git pull --rebase&&git push