Fix TypeError in number increment/decrement services when entity.value is string #2546
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: PR Labels | |
# yamllint disable-line rule:truthy | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- labeled | |
- unlabeled | |
- synchronize | |
workflow_call: | |
jobs: | |
pr_labels: | |
name: Verify | |
runs-on: ubuntu-latest | |
steps: | |
- name: π· Verify PR has a valid label | |
uses: jesusvasquez333/[email protected] | |
with: | |
pull-request-number: "${{ github.event.pull_request.number }}" | |
github-token: "${{ secrets.GITHUB_TOKEN }}" | |
valid-labels: >- | |
breaking-change, bugfix, documentation, enhancement, | |
refactor, performance, new-feature, maintenance, ci, dependencies | |
disable-reviews: true |