generated from qbicsoftware/spring-boot-starter-template
-
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.
Merge pull request #2 from qbicsoftware/development
Release PR
- Loading branch information
Showing
44 changed files
with
837 additions
and
1,012 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,14 +1,14 @@ | ||
<settings> | ||
<servers> | ||
<server> | ||
<id>nexus-snapshots</id> | ||
<username>${env.MAVEN_REPO_USERNAME}</username> | ||
<password>${env.MAVEN_REPO_PASSWORD}</password> | ||
</server> | ||
<server> | ||
<id>nexus-releases</id> | ||
<username>${env.MAVEN_REPO_USERNAME}</username> | ||
<password>${env.MAVEN_REPO_PASSWORD}</password> | ||
</server> | ||
</servers> | ||
<servers> | ||
<server> | ||
<id>nexus-snapshots</id> | ||
<username>${env.MAVEN_REPO_USERNAME}</username> | ||
<password>${env.MAVEN_REPO_PASSWORD}</password> | ||
</server> | ||
<server> | ||
<id>nexus-releases</id> | ||
<username>${env.MAVEN_REPO_USERNAME}</username> | ||
<password>${env.MAVEN_REPO_PASSWORD}</password> | ||
</server> | ||
</servers> | ||
</settings> |
Validating CODEOWNERS rules …
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 +1,2 @@ | ||
* @qbicsoftware/itss | ||
|
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 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" # See documentation for possible values | ||
directory: "/" # Location of package manifests | ||
schedule: | ||
interval: "weekly" |
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 @@ | ||
feature: | ||
- any: | ||
- head-branch: [ '^feature' ] | ||
fix: | ||
- any: | ||
- head-branch: [ '^fix', '^hotfix' ] | ||
chore: | ||
- any: | ||
- head-branch: [ '^chore', '^documentation', '^docs', '^ci', '^refactor' ] | ||
release: | ||
- all: | ||
- base-branch: [ 'main' ] | ||
- head-branch: [ 'development', 'dev' ] |
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
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,15 +1,18 @@ | ||
name: Label Pull Requests | ||
|
||
permissions: | ||
contents: read | ||
pull-requests: write | ||
|
||
on: | ||
pull_request: | ||
types: [ opened, edited ] | ||
|
||
jobs: | ||
label: | ||
Assign-Label-To-Pull-Request: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: TimonVS/pr-labeler-action@v3 | ||
- uses: actions/labeler@v5 | ||
with: | ||
configuration-path: .github/pr-labels.yml # optional, .github/pr-labeler.yml is the default value | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
repo-token: "${{ secrets.GITHUB_TOKEN }}" | ||
configuration-path: .github/labeler.yml |
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,29 +1,34 @@ | ||
# Compiled class file | ||
*.class | ||
# Eclipse | ||
.classpath | ||
.project | ||
.settings/ | ||
|
||
# Log file | ||
*.log | ||
# VS Code | ||
.vscode | ||
|
||
# Maven targets | ||
target/* | ||
# Intellij | ||
.idea/ | ||
*.iml | ||
*.iws | ||
|
||
# BlueJ files | ||
*.ctxt | ||
# Mac | ||
.DS_Store | ||
|
||
# Mobile Tools for Java (J2ME) | ||
.mtj.tmp/ | ||
# Maven | ||
target/ | ||
**/.flattened-pom.xml | ||
|
||
# Package Files # | ||
*.jar | ||
*.war | ||
*.nar | ||
*.ear | ||
*.zip | ||
*.tar.gz | ||
*.rar | ||
# Some of our applications generate logs, which should be ignored by git | ||
logs/ | ||
|
||
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml | ||
hs_err_pid* | ||
# Other | ||
**/.factorypath | ||
|
||
# misc | ||
*.DS_STORE | ||
# compiled Vaadin widgetsets | ||
**/VAADIN/widgetsets | ||
|
||
# From docs | ||
**/__pycache__ | ||
|
||
# Properties, which may contain sensitive information | ||
**/developer.properties |
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.