pr-labeler-action
pr-labeler-action copied to clipboard
Automatically labels your PRs based on branch name patterns like feature/* or fix/*.
Bumps [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core) from 1.2.0 to 1.9.1. Changelog Sourced from @actions/core's changelog. 1.9.1 Randomize delimiter when calling core.exportVariable 1.9.0 Added toPosixPath, toWin32Path and toPlatformPath utilities #1102 1.8.2 Update to v2.0.1 of...
Are there any plans to add labels based on regex matching head/base branch? Current config - ``` feature: ['feature/*', 'feat/*'] fix: fix/* chore: chore/* fixed-branch: fixed-branch-name ``` Suggested config ```...
Adding the necessary logic to match on the base branch (issue https://github.com/TimonVS/pr-labeler-action/issues/27). #### Side note I had to update the `matcher` package to [version 4](https://github.com/sindresorhus/matcher/releases/tag/v4.0.0), otherwise an empty array of...
Configuration should be done using the `with` parameter instead of having to create a separate YAML file. We can still keep support for the YAML file as not to cause...
Closes #57 and #58. Permissions based on https://app.stepsecurity.io analysis.
Bumps [tar](https://github.com/npm/node-tar) from 4.4.8 to 4.4.19. Commits 9a6faa0 4.4.19 70ef812 drop dirCache for symlink on all platforms 3e35515 4.4.18 52b09e3 fix: prevent path escape using drive-relative paths bb93ba2 fix: reserve...
At https://github.com/step-security/secure-workflows we are building a knowledge-base (KB) of GITHUB_TOKEN permissions needed by different GitHub Actions. When developers try to set minimum token permissions for their workflows, they can use...
To improve security of our repo, we recently set the default permissions for the token for the repository to read only to the contents scope. I am now trying to...
I tried using this bot over my GitHub Enterprise edition but it doesn't work at all. Is it limited to GitHub only? Or it works for both and I am...
I'd like to have a fallback label applied without any matches. ``` feature: ['feature/*', 'feat/*'] fix: fix/* chore: chore/* unknown: * ``` So if nothing matches, it will add the...