Skip to content

Release / v0.12.0 #1024

Release / v0.12.0

Release / v0.12.0 #1024

Workflow file for this run

name: Remove Labels
on:
pull_request:
types: [synchronize]
branches:
- main
jobs:
remove:
name: Remove
runs-on: ubuntu-latest
steps:
- name: Remove Publish Label
uses: actions/github-script@v7
if: contains(github.event.pull_request.labels.*.name, 'Publish')
with:
script: |
github.rest.issues.removeLabel({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.payload.pull_request.number,
name: "Publish"
});