Skip to content

Releases: gagoar/codeowners-generator

v2.4.1

16 Jan 09:47
89183ee
Compare
Choose a tag to compare

2.4.1 (2024-01-16)

⚠ BREAKING CHANGES

  • action: Effectively change default value for preserve-block-position in github actions

Bug Fixes

  • action: Fix preserve-block-position default (#393) (f4ae6ee)
  • only include relevant files in published package (#399) (3bff598)

Miscellaneous Chores

Action 2.0: now with preserve block position fixed!

15 Jan 20:25
f4ae6ee
Compare
Choose a tag to compare

Per @bmaximuml, Current logic adds --preserve-block-position to a list of args if the length of the value provided to the preserve-block-position GitHub actions variable is not zero. Since it defaults to the string false, this effectively defaults it to true. You can only disable it by setting it explicitly to an empty string. This PR corrects this logic by only enabling preserve-block-position if it's explicitly set to true.

BREAKING CHANGE: Effectively change the default value for preserve-block-position in GitHub actions

Thanks to @gustavkj for his review and support!

v2.4.0

12 Jan 15:26
64b1e41
Compare
Choose a tag to compare

2.4.0 (2024-01-12)

Features

  • Expose includes variable to actions (#392) (670d636)
  • Read rest of options from custom configuration file (#391) (80756fe)

Bug Fixes

  • deps: update dependency cosmiconfig to v7.1.0 (#368) (91bab21)

Remove extraneous quote from action.yml

23 Mar 21:17
bfc7bfb
Compare
Choose a tag to compare

There was an odd quote preventing the workflow to run properly.

now with preserve block position!

23 Mar 03:23
a544321
Compare
Choose a tag to compare

We have added the ability to provide the --preserve-block-position (preventBlockPosition) to the action.

Remember that you can always create a configuration in your project that it will be picked up by the tool running on the action:

For example, if you create any files with the following names, codeowners-generator will pick it up!

  • a codowners-generator property in package.json
  • a .codowners-generatorrc file in JSON or YAML format
  • a .codowners-generator.json, .codowners-generator.yaml, .codowners-generator.yml, .codowners-generator.js, or .codowners-generator.cjs file
  • a codowners-generatorrc, codowners-generator.json, codowners-generatorrc.yaml, codowners-generatorrc.yml, codowners-generator.js or codowners-generator.cjs file inside a .config subdirectory
  • a codowners-generator.config.js or codowners-generator.config.cjs CommonJS module exporting an object

action.v1: adding composite action to use codeowners-generator in a workflow (#337)

19 Mar 03:04
4bc8d89
Compare
Choose a tag to compare
This PR will add the the capability for the project to be an action in
GitHub.

I will fast follow this PR with a release so I can publish it on the
GitHub market.

This PR should close #335