Releases: gha-utilities/workspace-commit
Releases · gha-utilities/workspace-commit
v0.0.4
v0.0.3
:bookmark: Tracks latest bug fixes
TLDR; allows for committing Workspace changes
For example say your Workflow builds some static web content...
- name: Workspace Site Build Commit
uses: gha-utilities/workspace-commit@v0.0.1
env:
COMMIT_MESSAGE_FOOTER: This commit was applied automatically from an Action
with:
all: true
message: >
Updates compiled site files
${COMMIT_MESSAGE_FOOTER}... and then tests run in another stage or Workflow...
- name: Workspace Site Tests Commit
if: success()
uses: gha-utilities/workspace-commit@v0.0.1
env:
COMMIT_MESSAGE_FOOTER: This commit was applied automatically from an Action
with:
all: true
message: >
Automated tests passed!
${COMMIT_MESSAGE_FOOTER}... then at any latter point (within the same Job), a push may be issued or not based off results of other Actions.
Tracks initial RFC tagged commit
This is a simple Action intended to make committing changes within a checked-out Workspace repository a little easier to read within Workflow files.
Pull Requests and/or Issues are certainly welcomed.