Update responses folder #127
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |