Releases: github/lock
Releases · github/lock
v1.3.0
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
- Improvements by @GrantBirki in #11
Full Changelog: v1.2.0...v1.3.0
v1.2.0
v1.2.0
What's Changed
- Include branch name in output if exists by @jasonmacgowan in #10
New Contributors
- @jasonmacgowan made their first contribution in #10
Full Changelog: v1.1.0...v1.2.0
v1.1.0
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
- Update Documentation by @GrantBirki in #2
- fix a typo by @GrantBirki in #3
- Lock Check by @GrantBirki in #6
- Lock Check - Add logs by @GrantBirki in #7
- Set output fix by @GrantBirki in #8
New Contributors
- @GrantBirki made their first contribution in #2
Full Changelog: v1.0.0...v1.1.0
v1.0.0
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
alpha testing
Full Changelog: https://github.com/GrantBirki/lock/commits/v0.0.1