Overhaul CI Design

This commit is contained in:
Arbion Halili
2025-06-28 12:29:01 +01:00
parent f7f779da19
commit e4c4b3e95a
10 changed files with 143 additions and 136 deletions

View File

@@ -0,0 +1,16 @@
name: Commit if changed
description: "Create a commit when the working tree is dirty"
inputs:
message:
description: "Commit message"
required: true
runs:
using: composite
steps:
- name: Commit changed files
shell: bash
run: |
git diff --quiet && exit 0
git commit -am "${{ inputs.message }}"