Skip to content

Releases: github/lock

v1.3.0

09 Mar 14:47
dbb0ca5
Compare
Choose a tag to compare

v1.3.0

This release only contains a few minor changes. The majority of the work done in the PR linked below contains 100% unit test coverage for this Action

What's Changed

Full Changelog: v1.2.0...v1.3.0

v1.2.0

28 Feb 09:23
08fb976
Compare
Choose a tag to compare

v1.2.0

What's Changed

New Contributors

Full Changelog: v1.1.0...v1.2.0

v1.1.0

03 Dec 17:39
0868bca
Compare
Choose a tag to compare

v1.1.0

This release adds a new option to the mode flag.

You can now use mode: check on headless runs (in Actions, not from PR comments) and see if a branch is locked or not in an automated fashion.

Simple Example:

name: lock-check

on:
  workflow_dispatch:

permissions:
  contents: read

jobs:
  lock-check:
    runs-on: ubuntu-latest
    steps:
      - uses: github/[email protected]
        id: lock
        with:
          mode: check

      - name: Print lock status
        run: |
          echo "Lock status: ${{ steps.lock.outputs.locked }}"

What's Changed

New Contributors

Full Changelog: v1.0.0...v1.1.0

v1.0.0

01 Nov 04:49
45fe9c0
Compare
Choose a tag to compare

Initial Release 🎉

This is the initial release of the lock Action that supports more custom branch-deploy locking implementations

Full Changelog: v0.0.1...v1.0.0

v0.0.1

01 Nov 03:48
032b0fe
Compare
Choose a tag to compare