-
Notifications
You must be signed in to change notification settings - Fork 25
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 #24 from sliedig/develop
chore: GitHub template and Docs updates
- Loading branch information
Showing
9 changed files
with
641 additions
and
10 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
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
addAssignees: true | ||
|
||
# The list of users to assign to new issues. | ||
# If empty or not provided, the repository owner is assigned | ||
assignees: | ||
- t1agob | ||
- sliedig |
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,45 @@ | ||
##### Labeler ########################################################################################################## | ||
labelPRBasedOnFilePath: | ||
area/logger: | ||
- libraries/src/AWS.Lambda.PowerTools.Logging/* | ||
- libraries/src/AWS.Lambda.PowerTools.Logging/**/* | ||
area/tracer: | ||
- libraries/src/AWS.Lambda.PowerTools.Tracing/* | ||
- libraries/src/AWS.Lambda.PowerTools.Tracing/**/* | ||
area/metrics: | ||
- libraries/src/AWS.Lambda.PowerTools.Metrics/* | ||
- libraries/src/AWS.Lambda.PowerTools.Metrics/**/* | ||
|
||
documentation: | ||
- docs/* | ||
- docs/**/* | ||
- mkdocs.yml | ||
|
||
internal: | ||
- .github/* | ||
- .github/**/* | ||
- .chglog/* | ||
- .flake8 | ||
- .gitignore | ||
- .pre-commit-config.yaml | ||
- Makefile | ||
- CONTRIBUTING.md | ||
- CODE_OF_CONDUCT.md | ||
- LICENSE | ||
|
||
tests: | ||
- libraries/tests/* | ||
- libraries/tests/**/* | ||
|
||
|
||
##### Greetings ######################################################################################################## | ||
firstPRWelcomeComment: > | ||
Thanks a lot for your first contribution! Please check out our contributing guidelines and don't hesitate to ask whatever you need. | ||
# Comment to be posted to congratulate user on their first merged PR | ||
firstPRMergeComment: > | ||
Awesome work, congrats on your first merged pull request and thank you for helping improve everyone's experience! | ||
# Comment to be posted to on first time issues | ||
firstIssueWelcomeComment: > | ||
Thanks for opening your first issue here! We'll come back to you as soon as we can. |
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 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<script> | ||
const websitePath = window.location.pathname; | ||
const versionRegex = /(\w.+)\/(latest|([0-9]+)\.([0-9]+)\.([0-9]+)(?:-([0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?(?:\+[0-9A-Za-z-]+)?)/; | ||
|
||
if (websitePath.search(versionRegex) === -1) { | ||
let projectName = "aws-lambda-powertools-dotnet" | ||
// redirect old links to latest version alias | ||
window.location = websitePath.replace(projectName, `${projectName}/latest`) | ||
} | ||
</script> | ||
</head> | ||
|
||
</html> |
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.