Project: Spine Curve Correction Simulation Through 3D Reconstruction and Parameter Measurement #10
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"] | |
}) |