Skip to content

Fix password-spray attack example #29

Fix password-spray attack example

Fix password-spray attack example #29

Workflow file for this run

name: Sync parent repo with submodule
on:
push:
branches:
- master
jobs:
update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
repository: security-summer-school/security-summer-school.github.io
token: ${{ secrets.WEB_PRIVATE_TOKEN }}
- name: Pull and update submodule recursively
run: |
git submodule update --init --recursive
git submodule update --remote --recursive -- content/en/web/
- name: Commit
run: |
git config user.email "[email protected]"
git config user.name "Web Track Updater"
git add content/en/web/
git commit -m "web: Update track submodule" || echo "No changes to commit"
git push