action-git-commit-push/.github/workflows/ubuntu_action_test.yml
RenovateBot 2ce2621e97
All checks were successful
Action test on Ubuntu / ubuntu-minimal (push) Has been skipped
Action test on Ubuntu / ubuntu-full (push) Successful in 5s
Action test on Ubuntu / ubuntu-nochanges (push) Successful in 5s
chore(deps): pin actions/checkout action to 11bd719
Signed-off-by: RenovateBot <renovatebot@w9r.dev>
2025-01-08 14:00:42 +00:00

40 lines
1.2 KiB
YAML

name: Action test on Ubuntu
on:
schedule:
- cron: "0 2 * * MON-FRI" # Runs at 02:00 UTC
push:
workflow_dispatch:
jobs:
ubuntu-minimal:
runs-on: ubuntu-latest
if: github.event_name != 'push'
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- run: date > reports/ubuntu_report_minimal.txt
- uses: https://w9r.dev/w9r.dev/action-git-commit-push@main
ubuntu-full:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- run: date > reports/ubuntu_report_full.txt
- uses: https://w9r.dev/w9r.dev/action-git-commit-push@main
with:
email: releasebot@w9r.dev
name: ReleaseBot
commit_message: ubuntu full workflow
target_branch: ubuntu
files: reports/ubuntu_report_full.txt
remote_repository: origin
access_token: ${{ github.token }}
force: true
empty: true
tags: true
ubuntu-nochanges:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: GuillaumeFalourd/git-commit-push@main