Project: SlicerSOFA simulation for predicting soft tissue restoration after orbital fracture repair #68
This file contains hidden or 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"] | |
| }) |