mirror of
https://github.com/actions/checkout
synced 2024-11-09 23:22:40 +00:00
14 lines
321 B
Text
14 lines
321 B
Text
|
on: push
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- run: |
|
||
|
date > generated.txt
|
||
|
git config user.name github-actions
|
||
|
git config user.email github-actions@github.com
|
||
|
git add .
|
||
|
git commit -m "generated"
|
||
|
git push
|