Add random name for the backdoor file + format files #28
Workflow file for this run
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: 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 |