Skip to content

Bump Repository

Bump Repository #1

Workflow file for this run

name: Bump Last Updated
on:
schedule:
- cron: '0 0 */3 * *'
workflow_dispatch:
jobs:
bump:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Create empty commit
run: |
git config --local user.email "[email protected]"
git config --local user.name "evomi-admin"
git commit --allow-empty -m "evomi.com"
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GH_TOKEN }}
branch: ${{ github.ref }}