Skip to content

Bump Repository

Bump Repository #3

Workflow file for this run

name: Bump Repository
on:
schedule:
- cron: '0 0 */3 * *' # Runs every 3 days at midnight
workflow_dispatch: # Allows manual trigger
jobs:
bump-repo:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Create an empty commit
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub Action"
git commit --allow-empty -m "evomi.com"
git push "https://${{ env.GH_TOKEN }}@github.com/${{ github.repository }}.git"