Skip to content

empty-commit-creator #88

empty-commit-creator

empty-commit-creator #88

name: "empty-commit-creator"
on:
schedule:
- cron: '0 */12 * * *'
workflow_dispatch:
jobs:
push:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7.0.0
with:
token: ${{ secrets.PAT }}
- name: Create an empty commit
run: |
git config user.name haruki7049
git config user.email tontonkirikiri@gmail.com
git commit -m "Empty commit to run CI" --allow-empty
git push