-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Rename files and added editorconfig
- Loading branch information
Adrián Martín García
committed
Aug 15, 2024
1 parent
505502d
commit 2a5aeea
Showing
5 changed files
with
72 additions
and
11 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 |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# EditorConfig is awesome: https://EditorConfig.org | ||
# Uses editorconfig to maintain consistent coding styles | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
indent_size = 2 | ||
indent_style = space | ||
insert_final_newline = true | ||
max_line_length = 80 | ||
trim_trailing_whitespace = true | ||
|
||
[*.{tf,tfvars}] | ||
indent_style = space | ||
indent_size = 2 | ||
tab_width = 2 | ||
|
||
[*.py] | ||
indent_style = space | ||
indent_size = 4 | ||
max_line_length = 79 | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false | ||
|
||
[*.{yaml,yml,json,jsonc}] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[Dockerfile*] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.sh] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[Makefile] | ||
indent_style = tab | ||
|
||
[*.gitignore] | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true |
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 @@ | ||
name: EditorConfig Checker | ||
|
||
on: | ||
issues: | ||
types: [opened] | ||
pull_request: | ||
types: [opened, edited, synchronize, reopened] | ||
|
||
jobs: | ||
editorconfig: | ||
uses: devops-ia/.github/.github/workflows/editorconfig.yaml@main | ||
secrets: inherit |
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
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,19 +1,19 @@ | ||
{ | ||
"name": "@devops-ia/helm-release-cleaner", | ||
"name": "@devops-ia/release-cleaner", | ||
"version": "3.0.0", | ||
"description": "GitHub Action for Helm Release Cleaner", | ||
"author": "amartingarcia <[email protected]> (https://github.com/devops-ia/helm-release-cleaner)", | ||
"homepage": "https://github.com/devops-ia/helm-release-cleaner#readme", | ||
"author": "amartingarcia <[email protected]> (https://github.com/devops-ia/release-cleaner)", | ||
"homepage": "https://github.com/devops-ia/release-cleaner#readme", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"keywords": [ | ||
"helm-release-cleaner", | ||
"release-cleaner", | ||
"action" | ||
], | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/devops-ia/helm-release-cleaner/issues" | ||
"url": "https://github.com/devops-ia/release-cleaner/issues" | ||
}, | ||
"release": { | ||
"tagFormat": "v${version}", | ||
|
@@ -29,7 +29,9 @@ | |
[ | ||
"@semantic-release/git", | ||
{ | ||
"assets": ["CHANGELOG.md"] | ||
"assets": [ | ||
"CHANGELOG.md" | ||
] | ||
} | ||
] | ||
] | ||
|