-
-
Notifications
You must be signed in to change notification settings - Fork 165
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Replaced old logJSONViewer aura cmp & logViewer lwc with a new consolidated logJSON quickaction lwc * Updated layouts & objects to remove XML nodes <excludeButtons>IsotopeSubscription</excludeButtons> and <excludedStandardButtons>OpenListInQuip</excludedStandardButtons> because dealing with standard buttons is the worst. In orgs that don't have these features enabled, the package installation fails * Optimized the LogEntry__c flexipage by moving limits fields to be within a tab, and removed some fields from the page * Added Chatter Feed component to app utility bar * Fixed an issue in README's markdown accidentally removing the install button image * Switched to using separate environment names in GitHub Actions * Renamed deploy.yml to build.yml, added the amazing pwsh function @jamessimone created for apex-rollup to auto-promote any prod package versions that are listed in README files
- Loading branch information
Showing
29 changed files
with
633 additions
and
596 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# This script finds any production install links for packages within README files & automatically promotes them | ||
|
||
$DebugPreference = 'Continue' | ||
$ErrorActionPreference = 'Stop' | ||
|
||
function Start-Package-Promotion { | ||
Write-Debug "Beginning promote script" | ||
|
||
$allReadmes = Get-ChildItem -Exclude node_modules, .sfdx, tests | Get-ChildItem -Filter README.md -Recurse | ||
foreach ($readme in $allReadmes) { | ||
$readmePackageIdResults = (Select-String -Path $readme 'https:\/\/login.salesforce.com\/packaging\/installPackage.apexp\?p0=.{0,18}') | ||
if ($readmePackageIdResults.Matches.Length -gt 0) { | ||
$packageIdSplit = $readmePackageIdResults.Matches[0].Value.Split("=") | ||
if ($packageIdSplit.Length -eq 2) { | ||
$packageId = $packageIdSplit[1] | ||
Write-Debug "Promoting $packageId from $readme" | ||
npx sfdx force:package:version:promote --package $packageId --noprompt | ||
} | ||
} | ||
} | ||
Write-Debug "Finished package promotion!" | ||
} | ||
|
||
Start-Package-Promotion |
22 changes: 0 additions & 22 deletions
22
nebula-logger/core/main/log-management/aura/logJSONViewer/logJSONViewer.cmp
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
nebula-logger/core/main/log-management/aura/logJSONViewer/logJSONViewer.cmp-meta.xml
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.