Skip to content

Unlock Issues

Actions
Unlock an issue, to be used on an event
v1.2.3
Latest
Star (4)

Unlock an issue. By default, it uses the context's but can be targetted.

Targetting context's issue:

- name: Unlock issue
  uses: thisisnacho/unlock-issues@v1.2

Sample file: .github/workflows/unlock-reopened-issues.yml

name: Unlock reopened issue

on:
  issues:
    types: [reopened]

jobs:
  unlock:
    name: Unlock
    runs-on: ubuntu-latest
    permissions:
      issues: write
    steps:
    - name: Unlock issue
      uses: thisisnacho/unlock-issues@v1.2

As simple as that!

Targetting a specific issue / repo:

    - name: Unlock issue
      uses: thisisnacho/unlock-issues@v1.2
      with:
        repo-token: {Token with permissions over the target repository / issue}
        owner-name: {Owner Name - Optional - Default: Context's Repository Owner}
        repo-name: {Repository Name - Optional - Default: Context's Repository}
        issue-number: {Issue Number - Optional - Default: Context's Issue}

Unlock Issues is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.

About

Unlock an issue, to be used on an event
v1.2.3
Latest

Unlock Issues is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.