Skip to content

Commit b9672fd

Browse files
authored
Fix wrong repository name in action readme (#15)
1 parent 6cc1459 commit b9672fd

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The action requires `id-token: write` permissions.
1515

1616
```yaml
1717
- name: setup
18-
uses: mongodb/drivers-github-tools/setup@v2
18+
uses: mongodb-labs/drivers-github-tools/setup@v2
1919
with:
2020
aws_role_arn: ${{ secrets.AWS_ROLE_ARN }}
2121
aws_region_name: ${{ vars.AWS_REGION_NAME }}
@@ -38,17 +38,17 @@ Use this action to create signed git artifacts:
3838

3939
```yaml
4040
- name: Setup
41-
uses: mongodb/drivers-github-tools/setup@v2
41+
uses: mongodb-labs/drivers-github-tools/setup@v2
4242
with:
4343
...
4444
4545
- name: Create signed commit
46-
uses: mongodb/drivers-github-tools/git-sign@v2
46+
uses: mongodb-labs/drivers-github-tools/git-sign@v2
4747
with:
4848
command: "git commit -m 'Commit' -s --gpg-sign=${{ vars.GPG_KEY_ID }}"
4949
5050
- name: Create signed tag
51-
uses: mongodb/drivers-github-tools/git-sign@v2
51+
uses: mongodb-labs/drivers-github-tools/git-sign@v2
5252
with:
5353
command: "git tag -m 'Tag' -s --local-user=${{ vars.GPG_KEY_ID }} <tag>"
5454
```
@@ -59,12 +59,12 @@ This action is used to create detached signatures for files:
5959

6060
```yaml
6161
- name: Setup
62-
uses: mongodb/drivers-github-tools/setup@v2
62+
uses: mongodb-labs/drivers-github-tools/setup@v2
6363
with:
6464
...
6565
6666
- name: Create detached signature
67-
uses: mongodb/drivers-github-tools/gpg-sign@v2
67+
uses: mongodb-labs/drivers-github-tools/gpg-sign@v2
6868
with:
6969
filenames: somefile.ext
7070
```
@@ -76,12 +76,12 @@ You can also supply a glob pattern to sign a group of files:
7676

7777
```yaml
7878
- name: Setup
79-
uses: mongodb/drivers-github-tools/setup@v2
79+
uses: mongodb-labs/drivers-github-tools/setup@v2
8080
with:
8181
...
8282
8383
- name: Create detached signature
84-
uses: mongodb/drivers-github-tools/garasign/gpg-sign@v1
84+
uses: mongodb-labs/drivers-github-tools/garasign/gpg-sign@v1
8585
with:
8686
filenames: dist/*
8787
```
@@ -98,12 +98,12 @@ It will create the file `$S3_ASSETS/authorized_publication.txt`
9898

9999
```yaml
100100
- name: Setup
101-
uses: mongodb/drivers-github-tools/setup@v2
101+
uses: mongodb-labs/drivers-github-tools/setup@v2
102102
with:
103103
...
104104
105105
- name: Create Authorized Publication Report
106-
uses: mongodb/drivers-github-tools/authorized-pub@v2
106+
uses: mongodb-labs/drivers-github-tools/authorized-pub@v2
107107
with:
108108
product_name: Mongo Python Driver
109109
release_version: ${{ github.ref_name }}
@@ -122,11 +122,11 @@ Push the commit and tag to the source branch unless `dry_run` is set.
122122

123123
```yaml
124124
- name: Setup
125-
uses: mongodb/drivers-github-tools/setup@v2
125+
uses: mongodb-labs/drivers-github-tools/setup@v2
126126
with:
127127
...
128128
129-
- uses: mongodb/drivers-github-tools/python/bump-and-tag@v2
129+
- uses: mongodb-labs/drivers-github-tools/python/bump-and-tag@v2
130130
with:
131131
version: ${{ inputs.version }}
132132
version_bump_script: ./.github/scripts/bump-version.sh
@@ -144,7 +144,7 @@ If `dry_run` is set, nothing will be published or pushed.
144144

145145
```yaml
146146
- name: Setup
147-
uses: mongodb/drivers-github-tools/setup@v2
147+
uses: mongodb-labs/drivers-github-tools/setup@v2
148148
with:
149149
...
150150

0 commit comments

Comments
 (0)