2021-10-21 14:53:37 -03:00
|
|
|
name: Action test on Ubuntu
|
|
|
|
|
|
|
|
on:
|
2021-10-21 14:54:21 -03:00
|
|
|
schedule:
|
2022-01-03 14:39:17 -03:00
|
|
|
- cron: "0 2 * * MON-FRI" # Runs at 02:00 UTC
|
2021-10-21 14:56:07 -03:00
|
|
|
push:
|
2021-10-21 14:53:37 -03:00
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
2021-10-21 15:03:39 -03:00
|
|
|
ubuntu-minimal:
|
2021-10-21 14:53:37 -03:00
|
|
|
runs-on: ubuntu-latest
|
2021-10-21 15:10:35 -03:00
|
|
|
if: github.event_name != 'push'
|
2021-10-21 14:53:37 -03:00
|
|
|
steps:
|
2025-01-08 14:00:42 +00:00
|
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
2021-10-21 15:07:46 -03:00
|
|
|
- run: date > reports/ubuntu_report_minimal.txt
|
2025-01-07 13:35:13 +00:00
|
|
|
- uses: https://w9r.dev/w9r.dev/action-git-commit-push@main
|
2021-10-21 14:53:37 -03:00
|
|
|
|
2021-10-21 15:03:39 -03:00
|
|
|
ubuntu-full:
|
2021-10-21 14:53:37 -03:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2025-01-08 14:00:42 +00:00
|
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
2021-10-21 15:07:46 -03:00
|
|
|
- run: date > reports/ubuntu_report_full.txt
|
2025-01-07 13:35:13 +00:00
|
|
|
- uses: https://w9r.dev/w9r.dev/action-git-commit-push@main
|
2021-10-21 14:53:37 -03:00
|
|
|
with:
|
2025-01-07 13:35:13 +00:00
|
|
|
email: releasebot@w9r.dev
|
|
|
|
name: ReleaseBot
|
2021-10-21 14:53:37 -03:00
|
|
|
commit_message: ubuntu full workflow
|
2021-10-21 15:01:44 -03:00
|
|
|
target_branch: ubuntu
|
2021-10-21 15:07:46 -03:00
|
|
|
files: reports/ubuntu_report_full.txt
|
2021-10-21 14:53:37 -03:00
|
|
|
remote_repository: origin
|
|
|
|
access_token: ${{ github.token }}
|
|
|
|
force: true
|
|
|
|
empty: true
|
2021-12-21 09:50:53 -03:00
|
|
|
tags: true
|
2022-01-03 14:39:17 -03:00
|
|
|
|
2021-12-21 09:50:53 -03:00
|
|
|
ubuntu-nochanges:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2025-01-08 14:00:42 +00:00
|
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
2021-12-21 09:50:53 -03:00
|
|
|
- uses: GuillaumeFalourd/git-commit-push@main
|