Unlock an issue. By default, it uses the context's but can be targetted.
- name: Unlock issue
uses: IOrlandoni/[email protected]
name: Unlock reopened issue
on:
issues:
types: [reopened]
jobs:
unlock:
name: Unlock
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: Unlock issue
uses: IOrlandoni/[email protected]
As simple as that!
- name: Unlock issue
uses: IOrlandoni/[email protected]
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}