2021-10-21 15:07:46 -03:00
|
|
|
name: Action test on Windows
|
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
- cron: "0 6 * * *" # Runs at 06:00 UTC everyday
|
|
|
|
push:
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
windows-minimal:
|
|
|
|
runs-on: windows-latest
|
2021-10-21 15:10:35 -03:00
|
|
|
if: github.event_name != 'push'
|
2021-10-21 15:07:46 -03:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2.3.4
|
|
|
|
- run: date > reports/windows_report_minimal.txt
|
|
|
|
- uses: GuillaumeFalourd/git-commit-push@main
|
|
|
|
|
|
|
|
windows-full:
|
|
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2.3.4
|
|
|
|
- run: date > reports/windows_report_full.txt
|
|
|
|
- uses: GuillaumeFalourd/git-commit-push@main
|
|
|
|
with:
|
|
|
|
email: ${{ github.actor }}[bot]@users.noreply.github.com
|
|
|
|
name: ${{ github.actor }}
|
|
|
|
commit_message: windows full workflow
|
|
|
|
target_branch: windows
|
|
|
|
files: reports/windows_report_full.txt
|
|
|
|
remote_repository: origin
|
|
|
|
access_token: ${{ github.token }}
|
|
|
|
force: true
|
|
|
|
empty: true
|
|
|
|
tags: true
|