Security Research Auto Update #155
This file contains hidden or 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: Security Research Auto Update | |
| on: | |
| schedule: | |
| - cron: "0 */12 * * *" | |
| workflow_dispatch: | |
| jobs: | |
| update: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v3 | |
| - name: Update timestamp | |
| run: | | |
| echo "Last research update: $(date)" >> research-log.txt | |
| - name: Commit update | |
| run: | | |
| git config --global user.name "security-bot" | |
| git config --global user.email "bot@github.com" | |
| git add research-log.txt | |
| git commit -m "auto: security research update" | |
| git push |