@@ -15,7 +15,7 @@ The action requires `id-token: write` permissions.
15
15
16
16
``` yaml
17
17
- name : setup
18
- uses : mongodb/drivers-github-tools/setup@v2
18
+ uses : mongodb-labs /drivers-github-tools/setup@v2
19
19
with :
20
20
aws_role_arn : ${{ secrets.AWS_ROLE_ARN }}
21
21
aws_region_name : ${{ vars.AWS_REGION_NAME }}
@@ -38,17 +38,17 @@ Use this action to create signed git artifacts:
38
38
39
39
` ` ` yaml
40
40
- name: Setup
41
- uses: mongodb/drivers-github-tools/setup@v2
41
+ uses: mongodb-labs /drivers-github-tools/setup@v2
42
42
with:
43
43
...
44
44
45
45
- name: Create signed commit
46
- uses: mongodb/drivers-github-tools/git-sign@v2
46
+ uses: mongodb-labs /drivers-github-tools/git-sign@v2
47
47
with:
48
48
command: "git commit -m 'Commit' -s --gpg-sign=${{ vars.GPG_KEY_ID }}"
49
49
50
50
- name: Create signed tag
51
- uses: mongodb/drivers-github-tools/git-sign@v2
51
+ uses: mongodb-labs /drivers-github-tools/git-sign@v2
52
52
with:
53
53
command: "git tag -m 'Tag' -s --local-user=${{ vars.GPG_KEY_ID }} <tag>"
54
54
` ` `
@@ -59,12 +59,12 @@ This action is used to create detached signatures for files:
59
59
60
60
` ` ` yaml
61
61
- name: Setup
62
- uses: mongodb/drivers-github-tools/setup@v2
62
+ uses: mongodb-labs /drivers-github-tools/setup@v2
63
63
with:
64
64
...
65
65
66
66
- name: Create detached signature
67
- uses: mongodb/drivers-github-tools/gpg-sign@v2
67
+ uses: mongodb-labs /drivers-github-tools/gpg-sign@v2
68
68
with:
69
69
filenames: somefile.ext
70
70
` ` `
@@ -76,12 +76,12 @@ You can also supply a glob pattern to sign a group of files:
76
76
77
77
` ` ` yaml
78
78
- name: Setup
79
- uses: mongodb/drivers-github-tools/setup@v2
79
+ uses: mongodb-labs /drivers-github-tools/setup@v2
80
80
with:
81
81
...
82
82
83
83
- 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
85
85
with:
86
86
filenames: dist/*
87
87
` ` `
@@ -98,12 +98,12 @@ It will create the file `$S3_ASSETS/authorized_publication.txt`
98
98
99
99
` ` ` yaml
100
100
- name: Setup
101
- uses: mongodb/drivers-github-tools/setup@v2
101
+ uses: mongodb-labs /drivers-github-tools/setup@v2
102
102
with:
103
103
...
104
104
105
105
- name: Create Authorized Publication Report
106
- uses: mongodb/drivers-github-tools/authorized-pub@v2
106
+ uses: mongodb-labs /drivers-github-tools/authorized-pub@v2
107
107
with:
108
108
product_name: Mongo Python Driver
109
109
release_version: ${{ github.ref_name }}
@@ -122,11 +122,11 @@ Push the commit and tag to the source branch unless `dry_run` is set.
122
122
123
123
` ` ` yaml
124
124
- name: Setup
125
- uses: mongodb/drivers-github-tools/setup@v2
125
+ uses: mongodb-labs /drivers-github-tools/setup@v2
126
126
with:
127
127
...
128
128
129
- - uses: mongodb/drivers-github-tools/python/bump-and-tag@v2
129
+ - uses: mongodb-labs /drivers-github-tools/python/bump-and-tag@v2
130
130
with:
131
131
version: ${{ inputs.version }}
132
132
version_bump_script: ./.github/scripts/bump-version.sh
@@ -144,7 +144,7 @@ If `dry_run` is set, nothing will be published or pushed.
144
144
145
145
` ` ` yaml
146
146
- name: Setup
147
- uses: mongodb/drivers-github-tools/setup@v2
147
+ uses: mongodb-labs /drivers-github-tools/setup@v2
148
148
with:
149
149
...
150
150
0 commit comments