-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Giving regex flags #9
Comments
@saihaj this is not currently supported but feel free to file a PR to add this |
Hello - I would like to report that the regex flag is not working for me. Reproduction steps:
I have even tried something simple, like so:
As of right now, Case insensitivity is not working. |
It appears that #15 may not be present in a tagged release: v2.3...master Could a maintainer please cut a release with that support? A workaround might be to point to the current |
Hmm, there may be other issues with using the full SHA: # .github/workflows/issue-labeler.yml
name: "Issue Labeler"
on:
issues:
types: [opened, edited]
jobs:
triage:
runs-on: ubuntu-latest
steps:
- uses: github/issue-labeler@0207bb58c165f7229d560291b28d8de891bc46d1
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
configuration-path: .github/labeler.yml
enable-versioned-regex: 0
# .github/labeler.yml
wontfix:
- '/(cli|commandline)/i'
Reference: https://github.com/bflad/go-module-three/runs/2656622695?check_suite_focus=true |
A new release has been cut for this |
How can I set flags to ignore case? I know it is
/i
but need help with putting it in the.yml
The text was updated successfully, but these errors were encountered: