Skip to content

Commit

Permalink
fix(impact): move to pools due to change in schema
Browse files Browse the repository at this point in the history
  • Loading branch information
azlam-abdulsalam committed Oct 31, 2023
1 parent ba47dcf commit cee3b3a
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ export default class ImpactedRelaseConfigResolver {
if (releaseConfig.releaseName.includes(filterBy)) {
impactedReleaseDefs.push({
releaseName: releaseConfig.releaseName,
domainNameUsedForPools: releaseConfig.domainNameUsedForPools
? releaseConfig.domainNameUsedForPools
pool: releaseConfig.pool
? releaseConfig.pool
: releaseConfig.releaseName,
filePath: filePath,
impactedPackages: releaseImpactedPackages, // Including the impacted packages
Expand All @@ -40,8 +40,8 @@ export default class ImpactedRelaseConfigResolver {
} else {
impactedReleaseDefs.push({
releaseName: releaseConfig.releaseName,
domainNameUsedForPools: releaseConfig.domainNameUsedForPools
? releaseConfig.domainNameUsedForPools
pool: releaseConfig.pool
? releaseConfig.pool
: releaseConfig.releaseName,
filePath: filePath,
impactedPackages: releaseImpactedPackages, // Including the impacted packages
Expand Down

0 comments on commit cee3b3a

Please sign in to comment.