Skip to content

maxkomarychev/oction-unlock-issue

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Unlock an issue

"Oction" is a GitHub Action that implements a single call with @octokit/request allowing easy interaction with GitHub REST APIs from your workflow.

Original documentation: https://developer.github.com/v3/issues/#unlock-an-issue

This action implements DELETE request to /repos/{owner}/{repo}/issues/{issue_number}/lock

Quick start

- uses: maxkomarychev/oction-unlock-issue@v0.7.1
  id: my_step_id
  with:
    token: <token value>
    issue_number: <issue_number value>
- name: Print outputs
  run: |
    echo ${{ steps.my_step_id.outputs.id }}
    echo ${{ steps.my_step_id.outputs.number }}

Inputs

Name Is required Description
token true Token to authenticate the request
owner false owner parameter
repo false repo parameter
issue_number true issue_number parameter

Outputs

Name Description
id id field of the response (if exists)
number number field of the response (if exists)

Friendly octions

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published