Skip to content

Commit 729f160

Browse files
committed
ci(release): allow entire SDK team to trigger workflows
- Replace 'js-sdk' GitHub team with the broader 'sdk_team' in the validate-actor gate so all SDK-team members (not just js-sdk) can manually trigger release-related workflows - Update draft-new-release, create-hotfix-branch, deploy-beta and rollback to gate on 'sdk_team,integrations' - Update the default team_names in validate-actor to 'sdk_team' Ref: SDK-4972
1 parent 2ca5363 commit 729f160

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/create-hotfix-branch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
if: github.ref == 'refs/heads/main'
1414
uses: ./.github/workflows/validate-actor.yml
1515
with:
16-
team_names: 'js-sdk,integrations'
16+
team_names: 'sdk_team,integrations'
1717
secrets:
1818
RELEASE_PRIVATE_KEY: ${{ secrets.RELEASE_PRIVATE_KEY }}
1919

.github/workflows/deploy-beta.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
if: ${{ startsWith(github.ref, 'refs/heads/') }}
3232
uses: ./.github/workflows/validate-actor.yml
3333
with:
34-
team_names: 'js-sdk,integrations'
34+
team_names: 'sdk_team,integrations'
3535
secrets:
3636
RELEASE_PRIVATE_KEY: ${{ secrets.RELEASE_PRIVATE_KEY }}
3737

.github/workflows/draft-new-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
if: github.ref == 'refs/heads/develop' || startsWith(github.ref, 'refs/heads/hotfix/')
2929
uses: ./.github/workflows/validate-actor.yml
3030
with:
31-
team_names: 'js-sdk,integrations'
31+
team_names: 'sdk_team,integrations'
3232
secrets:
3333
RELEASE_PRIVATE_KEY: ${{ secrets.RELEASE_PRIVATE_KEY }}
3434

.github/workflows/rollback.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
if: startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main'
2828
uses: ./.github/workflows/validate-actor.yml
2929
with:
30-
team_names: 'js-sdk,integrations'
30+
team_names: 'sdk_team,integrations'
3131
secrets:
3232
RELEASE_PRIVATE_KEY: ${{ secrets.RELEASE_PRIVATE_KEY }}
3333

.github/workflows/validate-actor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
team_names:
77
description: 'Comma-separated list of team names'
88
type: string
9-
default: 'js-sdk'
9+
default: 'sdk_team'
1010
secrets:
1111
RELEASE_PRIVATE_KEY:
1212
required: true

0 commit comments

Comments
 (0)