Skip to content

Support a template manager with source editing and preview #7

Support a template manager with source editing and preview

Support a template manager with source editing and preview #7

Workflow file for this run

name: Unlock reopened issues
on:
issues:
types: [reopened]
jobs:
unlock:
if: ${{ github.event.issue.locked }}
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: Unlock conversation
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_REPO: ${{ github.repository }}
ISSUE_NUMBER: ${{ github.event.issue.number }}
run: gh api --method DELETE "repos/${GH_REPO}/issues/${ISSUE_NUMBER}/lock"