ncurses: Version bumped to 6.5 #15
Workflow file for this run
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: Remove Label on New Commit | |
on: | |
pull_request: | |
types: [synchronize] | |
jobs: | |
remove-label: | |
if: contains(github.event.pull_request.labels.*.name, 'iso_ok') | |
runs-on: ubuntu-latest | |
steps: | |
- name: Remove iso_broken label from PR | |
uses: actions/github-script@v7 | |
with: | |
script: | | |
const labelToRemove = 'iso_broken' | |
await github.rest.issues.removeLabel({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
issue_number: context.issue.number, | |
name: [labelToRemove], | |
}) |