Skip to content

test-commit-push

test-commit-push #1

name: test-commit-push
on:
workflow_dispatch: {}
jobs:
update-image:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Create dummy changes
run: |
echo "Dummy change at $(date)" >> DUMMY.md
- name: Commit and push changes
run: |
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git add .
git commit -m "ci: test commit from gh actions" || exit 0
git push