Skip to content

Releases: gha-utilities/workspace-commit

v0.0.4

16 Jan 21:27

Choose a tag to compare

:bookmark: Tracks bug fixes

v0.0.3

11 Apr 21:27

Choose a tag to compare

:bookmark: Tracks latest bug fixes

TLDR; allows for committing Workspace changes

06 Nov 21:49

Choose a tag to compare

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

05 Nov 00:19

Choose a tag to compare

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.