Project: Development of a 3D Slicer Extension to Support Samsung Medical Center Protocol Based PreOperative Planning for Liver Transplantation and Liver Cancer Surgery #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Apply ready label on draft label removal | |
on: | |
issues: | |
types: [ unlabeled ] | |
permissions: | |
contents: read | |
jobs: | |
apply-ready: | |
if: github.event.label.name == 'draft' | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- name: Add "ready" label | |
uses: actions/github-script@v6 | |
with: | |
script: | | |
github.rest.issues.addLabels({ | |
issue_number: context.payload.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
labels: ["ready"] | |
}) |