Add loadbalance quota list #3
Workflow file for this run
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: Reset PR labels on push | |
# **What it does**: When the content of a PR changes, this workflow removes the semver label | |
# **Why we have it**: To make sure semver labels are up-to-date. | |
# **Who does it impact**: Pull requests. | |
on: | |
pull_request_target: | |
types: | |
- synchronize | |
jobs: | |
semver: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Remove the semver label | |
uses: andymckay/labeler@1.0.4 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
remove-labels: "semver:patch, semver:minor, semver:major" |