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
#!/usr/bin/env bash | |
# Script to be used by qa to rebuild a scratch environment. | |
echo | |
echo ***WARNING******WARNING******WARNING******WARNING******WARNING******WARNING******WARNING******WARNING******WARNING******WARNING******WARNING*** | |
echo | |
echo This script is to be used by qa to rebuild a scratch environment. | |
echo This script will rollback any modifications to files and delete a scratch org with the same name given. | |
echo Please save and stage any file changes before running this script or they will be undone. | |
echo |
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
[Documentation] Activates an existing custom theme based on its position. | |
... To be run in a CumulusciCI project. | |
... Add to a folder in root named "tasks". | |
... Run with command: cci task run robot -o suites tasks/activate_custom_theme.robot | |
*** Settings *** | |
Resource cumulusci/robotframework/Salesforce.robot | |
Suite Setup Open Test Browser |
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
# Run Command: cci task run robot -o suites robot/NPSP/tests/api/success.robot -o vars BROWSER:headlesschrome | |
[Documentation] Success POST test. | |
*** Settings *** | |
Resource cumulusci/robotframework/Salesforce.robot | |
Resource robot/Cumulus/resources/NPSP.robot | |
Library DateTime | |
Library robot/NPSP/resources/RequestsLibrary/ |
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
5: | |
task: add_picklist_entries | |
options: | |
picklists: npsp__DataImport__c.npsp__Status__c | |
entries: | |
- fullName: Ready To Process | |
- fullName: Imported | |
- fullName: Dry Run - Validated | |
- fullName: Dry Run - Error | |
- fullName: Failed |
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
{"host":{"platform":"darwin","release":"20.5.0","screens":[{"id":441107468,"bounds":{"x":0,"y":0,"width":2560,"height":1440},"workArea":{"x":0,"y":25,"width":2560,"height":1415},"accelerometerSupport":"unknown","monochrome":false,"colorDepth":24,"colorSpace":"{primaries_d50_referred: [[0.6440, 0.3405], [0.3303, 0.6163], [0.1615, 0.0580]], transfer:0.0777*x + 0.0000 if x < 0.0450 else (0.9495*x + 0.0495)**2.3955 + 0.0003, matrix:RGB, range:FULL}","depthPerComponent":8,"size":{"width":2560,"height":1440},"displayFrequency":59,"workAreaSize":{"width":2560,"height":1415},"scaleFactor":2,"rotation":0,"internal":false,"touchSupport":"unknown"},{"id":69734662,"bounds":{"x":-1344,"y":451,"width":1344,"height":840},"workArea":{"x":-1344,"y":451,"width":1344,"height":840},"accelerometerSupport":"unknown","monochrome":false,"colorDepth":30,"colorSpace":"{primaries:BT709, transfer:IEC61966_2_1_HDR, matrix:RGB, range:FULL}","depthPerComponent":10,"size":{"width":1344,"height":840},"displayFrequency":59,"workAreaSize":{" |
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
*** Settings *** | |
Resource cumulusci/robotframework/Salesforce.robot | |
Library cumulusci.robotframework.PageObjects | |
Suite Setup Run Keywords | |
... Setup Test Data | |
... Open Test Browser | |
Suite Teardown Delete Records And Close Browser | |
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
*** Settings *** | |
Resource cumulusci/robotframework/SalesforcePlaywright.robot | |
Suite Setup Run Keywords | |
... Open Test Browser | |
... Suite Setup Keywords | |
Suite Teardown Run Keywords | |
... Delete Records And Close Browser | |
*** Test Cases *** |
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
name: Main | |
on: | |
push: | |
branches: | |
- 'main' | |
env: | |
CUMULUSCI_KEYCHAIN_CLASS: cumulusci.core.keychain.EnvironmentProjectKeychain | |
CUMULUSCI_SERVICE_github: ${{ secrets.CUMULUSCI_SERVICE_github }} |
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
name: Org Setup | |
run-name: '${{ github.event.inputs.name }}::${{ github.event.inputs.org }}::${{ github.event.inputs.flow }}::${{ github.event.inputs.days }}::${{ github.event.inputs.delete_on_failure }}' | |
on: | |
workflow_dispatch: | |
inputs: | |
name: | |
type: string | |
required: true | |
description: CumulusCI org name (no spaces) |
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
name: Close PRs Opened by github-actions bot | |
on: | |
workflow_run: | |
workflows: [Tests] | |
types: | |
- completed | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
OlderNewer