Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
RachalCassity committed Sep 23, 2024
1 parent 0effc9e commit d7d785b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/require_backend_label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,13 @@ jobs:
pull_number: context.payload.pull_request.number
}).then(response => response.data.teams.map(team => team.slug));
if (!requestedTeams.includes(mobileTeam)) {
if (requestedTeams.includes(mobileTeam)) {
echo "omit_backend=true" >> $GITHUB_OUTPUT
}
if (!requestedTeams.includes(lighthouseTeam)) {
if (requestedTeams.includes(lighthouseTeam)) {
echo "omit_backend=true" >> $GITHUB_OUTPUT
}
if (!requestedTeams.includes(identityTeam)) {
if (requestedTeams.includes(identityTeam)) {
echo "omit_backend=true" >> $GITHUB_OUTPUT
}
- run: echo "${{ steps.requested_reviewers.outputs }}"
Expand Down

0 comments on commit d7d785b

Please sign in to comment.