release pa_ppx.0.16 to support ocaml 5.3.0 syntax changes #6358
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: Remove Label | |
on: | |
issue_comment: | |
types: [created] | |
jobs: | |
remove_label: | |
if: ${{ !contains(fromJSON(vars.MAINTAINERS), github.event.comment.user.login) && contains(github.event.issue.labels.*.name, fromJSON(vars.LABEL_TO_REMOVE)) }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions-ecosystem/action-remove-labels@v1 | |
with: | |
labels: ${{ fromJSON(vars.LABEL_TO_REMOVE) }} |