Skip to content

Commit

Permalink
fix(actions): use correct reviewing team name (carbon-design-system#6549
Browse files Browse the repository at this point in the history
)
  • Loading branch information
matthewgallo authored Dec 5, 2024
1 parent 6a90311 commit 2654860
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions actions/add-review-labels/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ inputs:
APP_PRIVATE_KEY:
description: GitHub app private key
required: true
APP_INSTALLATION_ID:
description: Carbon automation GitHub app installation id
required: true
runs:
using: 'docker'
image: 'Dockerfile'
2 changes: 1 addition & 1 deletion actions/add-review-labels/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ async function run() {
// Get reviewer team data
const { data } = await octokit.request('GET /orgs/{org}/teams/{team_slug}', {
org: organization.login,
team_slug: 'reviewing-team', // Should be only hardcoded value (outside of the labels) needed within this action. Replace with the appropriate reviewing team that is assigned to review PRs.
team_slug: 'carbon-for-ibm-products-reviewers', // Should be only hardcoded value (outside of the labels) needed within this action.
headers: {
'X-GitHub-Api-Version': '2022-11-28',
},
Expand Down

0 comments on commit 2654860

Please sign in to comment.