fix(ExitCode): add from_str in ExitCode and replace parse_no_raise with it, warn if the error code is not in range #1457
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: "Label Pull Request" | |
on: | |
- pull_request_target | |
jobs: | |
label-pr: | |
permissions: | |
contents: read | |
pull-requests: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
sparse-checkout: | | |
.github/labeler.yml | |
sparse-checkout-cone-mode: false | |
- uses: actions/labeler@v5 | |
with: | |
configuration-path: .github/labeler.yml | |
- name: Label based on PR title | |
uses: actions/github-script@v7 | |
with: | |
script: | | |
const title = context.payload.pull_request.title.toLowerCase(); | |
const labels = []; | |
if (title.includes("fix") || title.includes("bug")) { | |
labels.push("type: bug"); | |
} | |
if (title.includes("feat")) { | |
labels.push("type: feature"); | |
} | |
if (title.includes("doc")) { | |
labels.push("type: documentation"); | |
} | |
if (title.includes("refactor")) { | |
labels.push("type: refactor"); | |
} | |
if (labels.length > 0) { | |
await github.rest.issues.addLabels({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
issue_number: context.payload.pull_request.number, | |
labels | |
}); | |
} |