Simulate activity #39
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: Simulate activity | |
on: | |
schedule: | |
- cron: '0 0 1 * *' | |
workflow_dispatch: | |
inputs: {} | |
jobs: | |
simulate-activity: | |
name: Simulate activity to keep workflows runnign | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: master | |
fetch-depth: 0 | |
- name: Amend and push force last commit to keep it up to date. | |
run: | | |
git config --global user.name 'github-actions[bot]' | |
git config --global user.email '41898282+github-actions[bot]@users.noreply.github.com' | |
git commit --amend --no-edit | |
git push --force origin master |