-
Notifications
You must be signed in to change notification settings - Fork 424
Comparing changes
Open a pull request
base repository: actions/labeler
base: 0967ca812e7fdc8f5f71402a1b486d5bd061fe20
head repository: actions/labeler
compare: ac9175f8a1f3625fd0d4fb234536d26811351594
- 11 commits
- 34 files changed
- 9 contributors
Commits on Jun 30, 2023
-
Improved Error message for missing config file (#475)
* error message for missing config * chore: formatting and index js * chore: update json5 * changes from cr Co-authored-by: AndreiLobanovich <andreilobanovich@github.com> * chore: recreate dist.js * chore: revert package-lock * chore: newline fix --------- Co-authored-by: AndreiLobanovich <andreilobanovich@github.com>
Configuration menu - View commit details
-
Copy full SHA for e3c0d9b - Browse repository at this point
Copy the full SHA e3c0d9bView commit details -
Configuration menu - View commit details
-
Copy full SHA for a212485 - Browse repository at this point
Copy the full SHA a212485View commit details
Commits on Jul 3, 2023
-
Bump eslint from 8.43.0 to 8.44.0 (#601)
Bumps [eslint](https://github.com/eslint/eslint) from 8.43.0 to 8.44.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](eslint/eslint@v8.43.0...v8.44.0) --- updated-dependencies: - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 5bea145 - Browse repository at this point
Copy the full SHA 5bea145View commit details
Commits on Jul 4, 2023
-
Bump @typescript-eslint/parser from 5.60.1 to 5.61.0 (#602)
Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 5.60.1 to 5.61.0. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v5.61.0/packages/parser) --- updated-dependencies: - dependency-name: "@typescript-eslint/parser" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 52979ba - Browse repository at this point
Copy the full SHA 52979baView commit details -
Bump @typescript-eslint/eslint-plugin from 5.60.1 to 5.61.0 (#604)
Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 5.60.1 to 5.61.0. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v5.61.0/packages/eslint-plugin) --- updated-dependencies: - dependency-name: "@typescript-eslint/eslint-plugin" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for b669025 - Browse repository at this point
Copy the full SHA b669025View commit details
Commits on Jul 5, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 65f306b - Browse repository at this point
Copy the full SHA 65f306bView commit details
Commits on Jul 6, 2023
-
Added ability to pass in an optional PR number as a parameter (#349)
* Adding pr-number as an optional parameter * Updated README * Tests on the pr-number parameter * Added missing | to table * re-built script * Adding support for multiple pr-numbers * excluded .idea * Updated readme to reflect that there might be more than one PR * Additional warning * Removed unused * Reformatted and re-built * Corrected message * Removed required check * Added (s) to pull request numbers in the description Co-authored-by: MaksimZhukov <46996400+MaksimZhukov@users.noreply.github.com> * Reworded PR-number parameter description Co-authored-by: MaksimZhukov <46996400+MaksimZhukov@users.noreply.github.com> * adding getMultilineInput into the tests * Fixing tests for single pr * Fixing tests for multiple prs * Updated README.md to make it more obvious that it can take a list of PRs * Added example that labels PR's 1-3 * Handled no pull requests better (from code review) * Handled no pull requests better (from code review) * Handled missing pull request better (from code review) * Back out suggested change as it broke the tests * Rebuilt dist * Update src/labeler.ts Co-authored-by: MaksimZhukov <46996400+MaksimZhukov@users.noreply.github.com> * Added Emphasis to the note Co-authored-by: MaksimZhukov <46996400+MaksimZhukov@users.noreply.github.com> * Changed mockInput for pr-number to be string[] --------- Co-authored-by: MaksimZhukov <46996400+MaksimZhukov@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 327d35f - Browse repository at this point
Copy the full SHA 327d35fView commit details
Commits on Jul 7, 2023
-
feat(config): support reading from local file if it exists (#394)
* feat(config): support reading from local file if it exists Signed-off-by: Liam Stanley <me@liamstanley.io> * fix: fix review point, update logic * docs: update readme * docs: update readme * feat: add additional logging * chore: update licenses * docs: fix review point in readme.md --------- Signed-off-by: Liam Stanley <me@liamstanley.io> Co-authored-by: IvanZosimov <ivanzosimov@github.com>
Configuration menu - View commit details
-
Copy full SHA for 994304c - Browse repository at this point
Copy the full SHA 994304cView commit details -
Early exit when no files are changed. (#456)
* Early exit when no files are changed. As a consequence of the `checkAll` function call returning `true` if the length of `changedFiles` is 0, this must early-exit in order to avoid labeling empty PRs. * Update dist. * Update for new code styles. * review changes requested * Update dist. * chore: prettify code --------- Co-authored-by: MaksimZhukov <maksimzhukov@github.com> Co-authored-by: IvanZosimov <ivanzosimov@github.com>
Configuration menu - View commit details
-
Copy full SHA for be13bbd - Browse repository at this point
Copy the full SHA be13bbdView commit details
Commits on Jul 10, 2023
-
Bump tough-cookie from 4.1.2 to 4.1.3 (#609)
Bumps [tough-cookie](https://github.com/salesforce/tough-cookie) from 4.1.2 to 4.1.3. - [Release notes](https://github.com/salesforce/tough-cookie/releases) - [Changelog](https://github.com/salesforce/tough-cookie/blob/master/CHANGELOG.md) - [Commits](salesforce/tough-cookie@v4.1.2...v4.1.3) --- updated-dependencies: - dependency-name: tough-cookie dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 7542ec7 - Browse repository at this point
Copy the full SHA 7542ec7View commit details -
Configuration menu - View commit details
-
Copy full SHA for ac9175f - Browse repository at this point
Copy the full SHA ac9175fView commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff 0967ca812e7fdc8f5f71402a1b486d5bd061fe20...ac9175f8a1f3625fd0d4fb234536d26811351594