generated from plus3it/repo-template
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit b3809c3
Showing
16 changed files
with
414 additions
and
0 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,6 @@ | ||
[bumpversion] | ||
current_version = 1.2.0 | ||
commit = True | ||
message = Bumps version to {new_version} | ||
tag = False | ||
tag_name = {new_version} |
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,36 @@ | ||
# see http://editorconfig.org | ||
root = true | ||
|
||
[*] | ||
end_of_line = lf | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
indent_style = space | ||
indent_size = 2 | ||
charset = utf-8 | ||
tab_width = 4 | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false | ||
|
||
[*.py] | ||
indent_size = 4 | ||
|
||
[go.mod] | ||
indent_style = tab | ||
indent_size = 1 | ||
|
||
[*.go] | ||
indent_style = tab | ||
indent_size = 1 | ||
|
||
[Makefile] | ||
indent_style = tab | ||
indent_size = 1 | ||
|
||
[Makefile.*] | ||
indent_style = tab | ||
indent_size = 1 | ||
|
||
[LICENSE] | ||
indent_size = none |
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,2 @@ | ||
# Auto detect text files and perform LF normalization | ||
* text eol=lf |
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,20 @@ | ||
version: 2 | ||
updates: | ||
# Maintain dependencies for GitHub Actions | ||
- package-ecosystem: github-actions | ||
directory: / | ||
schedule: | ||
interval: weekly | ||
groups: | ||
github-actions: | ||
patterns: | ||
- "*" | ||
# Maintain dependencies for dockerfiles | ||
- package-ecosystem: docker | ||
directory: / | ||
schedule: | ||
interval: weekly | ||
groups: | ||
docker: | ||
patterns: | ||
- "*" |
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,11 @@ | ||
name: Run lint and static analyis checks | ||
on: | ||
pull_request: | ||
|
||
concurrency: | ||
group: lint-${{ github.head_ref || github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
lint: | ||
uses: plus3it/actions-workflows/.github/workflows/lint.yml@2cd3620aa18aa840bd92e788978ad08d6663a0d4 |
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,19 @@ | ||
name: Create GitHub Release | ||
|
||
on: | ||
# Run on demand | ||
workflow_dispatch: | ||
|
||
# Run on push to main when .bumpversion.cfg version is updated | ||
push: | ||
branches: | ||
- main | ||
- master | ||
paths: | ||
- .bumpversion.cfg | ||
|
||
jobs: | ||
release: | ||
uses: plus3it/actions-workflows/.github/workflows/release.yml@2cd3620aa18aa840bd92e788978ad08d6663a0d4 | ||
secrets: | ||
release-token: ${{ secrets.GH_RELEASES_TOKEN }} |
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,11 @@ | ||
name: Run test jobs | ||
on: | ||
pull_request: | ||
|
||
concurrency: | ||
group: test-${{ github.head_ref || github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
test: | ||
uses: plus3it/actions-workflows/.github/workflows/test.yml@2cd3620aa18aa840bd92e788978ad08d6663a0d4 |
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,22 @@ | ||
# Local .terraform directories | ||
.terraform/ | ||
.terraform.lock.hcl | ||
|
||
# .tfstate files | ||
*.tfstate | ||
*.tfstate.* | ||
|
||
# .tfvars files | ||
*.tfvars | ||
|
||
# tardigrade-ci | ||
.tardigrade-ci | ||
tardigrade-ci/ | ||
|
||
# python cache | ||
__pycache__ | ||
.python-version | ||
.pytest_cache | ||
|
||
#macOS local dir meta file | ||
.DS_Store |
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,15 @@ | ||
pull_request_rules: | ||
- name: approve dependabot pull requests | ||
conditions: | ||
- author=dependabot[bot] | ||
actions: | ||
review: | ||
type: APPROVE | ||
|
||
- name: merge dependabot pull requests | ||
conditions: | ||
- author=dependabot[bot] | ||
- "#approved-reviews-by>=1" | ||
actions: | ||
merge: | ||
method: merge |
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,33 @@ | ||
## repo-template | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). | ||
|
||
### [1.2.0] (https://github.com/plus3it/repo-template/releases/tag/1.2.0) | ||
|
||
**Summary**: | ||
|
||
* Updated SHA value for Github Actions Workflows | ||
* Updated CHANGELOG.template.md file | ||
* Added Master branch in release workflow logic to make migration to Github Actions more efficient | ||
|
||
### 1.1.0 | ||
|
||
**Commit Delta**: N/A | ||
|
||
**Released**: 2023.01.27 | ||
|
||
**Summary**: | ||
|
||
* Updated workflow files to be consumable and reusable, and now points to actions-workflows repo | ||
|
||
### 1.0.0 | ||
|
||
**Commit Delta**: N/A | ||
|
||
**Released**: 2023.01.10 | ||
|
||
**Summary**: | ||
|
||
* Initial release of capability |
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,13 @@ | ||
## {{ repo-name }} | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). | ||
|
||
### [{{Major.Minor.Patch}}](https://github.com/plus3it/{{RepoName}}/releases/tag/{{Major.Minor.Patch}}) | ||
|
||
**Released**: {{ YYYY.MM.DD }} | ||
|
||
**Summary**: | ||
|
||
* {{ Bulleted descriptions of enhancements, changes, or fixes }} |
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 @@ | ||
FROM plus3it/tardigrade-ci:0.24.15 |
Oops, something went wrong.