-
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.
Merge pull request #55 from udx/UDXI-424
WIP
- Loading branch information
Showing
4 changed files
with
56 additions
and
6 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,41 @@ | ||
# Ignore credentials and sensitive data | ||
azure_creds.json | ||
aws_creds.json | ||
gcp_creds.json | ||
bitwarden_creds.json | ||
|
||
# Ignore Git and version control related files | ||
.git | ||
.gitignore | ||
.gitattributes | ||
|
||
# Ignore CI/CD and GitHub-related files | ||
ci/* | ||
.github/* | ||
|
||
# Ignore documentation files | ||
docs/* | ||
README.md | ||
SECURITY.md | ||
|
||
# Ignore local development scripts and helper files | ||
Makefile | ||
Makefile.help | ||
Makefile.variables | ||
|
||
# Ignore build artifacts and temporary files | ||
*.log | ||
*.tmp | ||
*.swp | ||
*.bak | ||
*.old | ||
|
||
# Ignore unnecessary configuration or text files | ||
etc/home/logo.txt | ||
|
||
# Ignore readme files in the secrets and auth directories | ||
lib/auth/readme.md | ||
lib/secrets/readme.md | ||
|
||
# Ignore unnecessary configuration documentation | ||
src/configs/readme.md |
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,10 +1,15 @@ | ||
mode: ContinuousDeployment | ||
|
||
branches: | ||
release: | ||
regex: ^latest$ | ||
tag: "" | ||
increment: Minor | ||
|
||
develop: | ||
regex: ^(?!latest).*$ | ||
tag: "beta" | ||
increment: Minor | ||
regex: ^(?!latest).* # All non-latest branches | ||
tag: beta | ||
increment: Patch | ||
|
||
assembly-versioning-scheme: MajorMinorPatch | ||
continuous-delivery-fallback-tag: ci |