Skip to content

Test 2

Test 2 #14

name: Push commit
on: push
permissions:
contents: write
jobs:
report:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Create report file
run: date +%s > report.txt
- name: Commit report
run: |
git config --global user.name 'GitHubBot'
git config --global user.email '[email protected]'
git add report.txt
git commit -am "Automated report"
git push