-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: rebuild action with node.js in preparation of new version-b…
…umper tool version" (#45) BREAKING CHANGE: <h3>This PR introduces BREAKING CHANGES!</h3> [Tool PR](TomerFi/version-bumper#165) <ul> <li>The action was rebuilt using Node.js.</li> <li> Changes in the action flags: <ul> <li><strong>changelog</strong> was removed.</li> <li><strong>preset</strong> was removed.</li> <li><strong>folder</strong> was changed to <strong>path</strong>. It's worth mentioning the folder/path requires a full path and not a folder relative to the workspace. (<em>folder</em> will eventually be removed).</li> <li><strong>bumpoverride</strong> was changed to <strong>bump</strong> (<em>bumpoverride</em> will eventually be removed). </li> </ul> </li> <br/> </ul> --------- Signed-off-by: Tomer Figenblat <[email protected]>
- Loading branch information
Showing
21 changed files
with
24,803 additions
and
863 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,9 @@ | ||
# editorconfig.org | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
|
||
[**.{yaml,yml}] | ||
indent_style = space | ||
indent_size = 2 | ||
max_line_length = 100 | ||
trim_trailing_whitespace = true | ||
|
||
[**.md] | ||
max_line_length = 120 | ||
trim_trailing_whitespace = false | ||
|
||
[**.{sh,bash,zsh,csh,ksh,fish}] | ||
indent_style = space | ||
indent_size = 2 | ||
trim_trailing_whitespace = true | ||
|
||
[Makefile*] | ||
indent_style = space | ||
indent_size = 4 | ||
trim_trailing_whitespace = true | ||
|
||
[**.{json,.all-contributorsrc}] | ||
indent_size = 2 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
root: true | ||
parserOptions: | ||
ecmaVersion: latest | ||
env: | ||
node: true | ||
commonjs: true | ||
extends: | ||
- "eslint:recommended" | ||
- "plugin:editorconfig/all" | ||
plugins: | ||
- "editorconfig" |
This file was deleted.
Oops, something went wrong.
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
--- | ||
name: CI | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
push: | ||
branches: | ||
- master | ||
paths: | ||
- '.dist/**' | ||
- 'action.js' | ||
- 'action.yml' | ||
- 'package.json' | ||
- 'package-lock.json' | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
permissions: | ||
pull-requests: read | ||
|
||
jobs: | ||
test: | ||
uses: ./.github/workflows/test_action.yml | ||
build: | ||
needs: test | ||
uses: ./.github/workflows/verify_dist.yml |
This file was deleted.
Oops, something went wrong.
This file contains 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
Oops, something went wrong.