Skip to content

Commit 5e2940d

Browse files
committed
fix: update references
1 parent ca2af73 commit 5e2940d

32 files changed

+180
-180
lines changed

.chglog/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ style: github
22
template: CHANGELOG.tpl.md
33
info:
44
title: CHANGELOG
5-
repository_url: https://github.com/aws-powertools/lambda-dotnet
5+
repository_url: https://github.com/aws-powertools/powertools-lambda-dotnet
66
options:
77
commits:
88
filters:

.github/CODEOWNERS

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
22

3-
* @awslabs/aws-lambda-powertools-net
3+
* @aws-powertools/powertools-lambda-net

.github/ISSUE_TEMPLATE/bug_report.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ body:
88
value: |
99
Thank you for submitting a bug report. Please add as much information as possible to help us reproduce, and remove any potential sensitive data.
1010
11-
Please become familiar with [our definition of bug](https://github.com/aws-powertools/lambda-dotnet/blob/develop/MAINTAINERS.md#is-that-a-bug).
11+
Please become familiar with [our definition of bug](https://github.com/aws-powertools/powertools-lambda-dotnet/blob/develop/MAINTAINERS.md#is-that-a-bug).
1212
- type: textarea
1313
id: expected_behaviour
1414
attributes:

.github/ISSUE_TEMPLATE/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
blank_issues_enabled: false
22
contact_links:
33
- name: Ask a question
4-
url: https://github.com/aws-powertools/lambda-dotnet/discussions/new
4+
url: https://github.com/aws-powertools/powertools-lambda-dotnet/discussions/new
55
about: Ask a general question about Lambda Powertools

.github/ISSUE_TEMPLATE/feature_request.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ body:
3838
options:
3939
- label: This feature request meets [Powertools for AWS Lambda (.NET) Tenets](https://docs.powertools.aws.dev/lambda-dotnet/tenets)
4040
required: true
41-
- label: Should this be considered in other Powertools for AWS Lambda languages? i.e. [Python](https://github.com/awslabs/aws-lambda-powertools-python), [Java](https://github.com/awslabs/aws-lambda-powertools-java/), and [TypeScript](https://github.com/awslabs/aws-lambda-powertools-typescript/)
41+
- label: Should this be considered in other Powertools for AWS Lambda languages? i.e. [Python](https://github.com/aws-powertools/powertools-lambda-python), [Java](https://github.com/aws-powertools/powertools-lambda-java/), and [TypeScript](https://github.com/aws-powertools/powertools-lambda-typescript/)
4242
required: false
4343
- type: markdown
4444
attributes:

.github/ISSUE_TEMPLATE/rfc.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ body:
8181
options:
8282
- label: This feature request meets [Powertools for AWS Lambda (.NET) Tenets](https://docs.powertools.aws.dev/lambda-dotnet/tenets/)
8383
required: true
84-
- label: Should this be considered in other Powertools for AWS Lambda (.NET) languages? i.e. [Python](https://github.com/awslabs/aws-lambda-powertools-python), [Java](https://github.com/awslabs/aws-lambda-powertools-java/), and [TypeScript](https://github.com/awslabs/aws-lambda-powertools-typescript/)
84+
- label: Should this be considered in other Powertools for AWS Lambda (.NET) languages? i.e. [Python](https://github.com/aws-powertools/powertools-lambda-python), [Java](https://github.com/aws-powertools/powertools-lambda-java/), and [TypeScript](https://github.com/aws-powertools/powertools-lambda-typescript/)
8585
required: false
8686
- type: markdown
8787
attributes:

.github/PULL_REQUEST_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Please leave checklist items unchecked if they do not apply to your change.
2020
* [ ] I have performed a self-review of this change
2121
* [ ] Changes have been tested
2222
* [ ] Changes are documented
23-
* [ ] PR title follows [conventional commit semantics](https://github.com/aws-powertools/lambda-dotnet/blob/develop/.github/semantic.yml)
23+
* [ ] PR title follows [conventional commit semantics](https://github.com/aws-powertools/powertools-lambda-dotnet/blob/develop/.github/semantic.yml)
2424

2525

2626
<details>

.github/scripts/constants.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ module.exports = Object.freeze({
2828
"LABEL_PENDING_RELEASE": "pending-release",
2929

3030
/** @type {string} */
31-
"HANDLE_MAINTAINERS_TEAM": "@awslabs/aws-lambda-powertools-net",
31+
"HANDLE_MAINTAINERS_TEAM": "@aws-powertools/powertools-lambda-net",
3232

3333
/** @type {string[]} */
3434
"IGNORE_AUTHORS": ["dependabot[bot]", "markdownify[bot]"],

.github/workflows/dispatch_analytics.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ permissions:
2323

2424
jobs:
2525
dispatch_token:
26-
if: github.repository == 'aws-powertools/lambda-dotnet'
26+
if: github.repository == 'aws-powertools/powertools-lambda-dotnet'
2727
concurrency:
2828
group: analytics
2929
runs-on: ubuntu-latest

.github/workflows/reusable_export_pr_details.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
description: "Record PR workflow execution ID to download PR details"
88
required: true
99
type: number
10-
workflow_origin: # see https://github.com/awslabs/aws-lambda-powertools-python/issues/1349
10+
workflow_origin: # see https://github.com/aws-powertools/powertools-lambda-python/issues/1349
1111
description: "Repository full name for runner integrity"
1212
required: true
1313
type: string
@@ -38,8 +38,8 @@ on:
3838

3939
jobs:
4040
export_pr_details:
41-
# see https://github.com/awslabs/aws-lambda-powertools-python/issues/1349
42-
if: inputs.workflow_origin == 'aws-powertools/lambda-dotnet'
41+
# see https://github.com/aws-powertools/powertools-lambda-python/issues/1349
42+
if: inputs.workflow_origin == 'aws-powertools/powertools-lambda-dotnet'
4343
runs-on: ubuntu-latest
4444
env:
4545
FILENAME: pr.txt

.github/workflows/reusable_publish_docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Reusable publish documentation
22

33
env:
44
BRANCH: develop
5-
ORIGIN: aws-powertools/lambda-dotnet
5+
ORIGIN: aws-powertools/powertools-lambda-dotnet
66

77
on:
88
workflow_call:

0 commit comments

Comments
 (0)