-
Notifications
You must be signed in to change notification settings - Fork 0
27 lines (21 loc) · 716 Bytes
/
Copy pathmain.yml
File metadata and controls
27 lines (21 loc) · 716 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
name: Auto-commit
on: push
jobs:
format-code:
runs-on: ubuntu-latest
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
# Other steps that change files in the repository go here
# …
- name: Update Non-Hidden Files
run: |
# Add a timestamp to a file to ensure there is always a change
echo "Last updated on: $(date)" > update.txt
# Commit all changed files back to the repository
- uses: stefanzweifel/git-auto-commit-action@v5