Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(actions): use correct reviewing team name #6549

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading