Skip to content

Commit

Permalink
To Push to Remote
Browse files Browse the repository at this point in the history
  • Loading branch information
JodieM committed Sep 11, 2023
2 parents 90ec238 + 473ba71 commit d5ce413
Show file tree
Hide file tree
Showing 159 changed files with 12,318 additions and 76 deletions.
10 changes: 10 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Python
*.py @SFDO-Community/sfdo-release-engineers

# CumulusCI
/cumulusci.yml @SFDO-Community/sfdo-release-engineers
/tasks/ @SFDO-Community/sfdo-release-engineers

# Actions
/.github @SFDO-Community/sfdo-release-engineers
/scripts @SFDO-Community/sfdo-release-engineers
38 changes: 38 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_issue.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
name: Bug report
about: Create a report to help us improve
title: "[BUG]"
labels: bug
assignees:

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]

**Smartphone (please complete the following information):**
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]

**Additional context**
Add any other context about the problem here.
14 changes: 14 additions & 0 deletions .github/ISSUE_TEMPLATE/documentation.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
name: Documentation
about: Template to capture Documentation needs or Documentation to be added.
title: "[DOCUMENTATION]"
labels: documentation
assignees:

---

**Please share the area or functionality of the Documentation need/issue**

**If appropriate, please articulate as best as possible where the documentation is insufficient or doesn't seem clear**

**If appropriate, please provide documentation or adjustments**
27 changes: 27 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
name: Feature request
about: Suggest an idea for this project
title: "[FEATURE]"
labels: enhancement
assignees:

---

**Have you shared this feature idea request in the Trailblazer Community?**
Please first share your thought in the Summit Events App Trailblazer Community for additional support on your idea as well as some initial requirement gathering.

If you have shared, please provide a link to your post.

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen. Please provide any mock ups that will help articulate the solution you'd like to see.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**To help determine if a recipe may be more appropriate, please share other use cases, if possible, this functionality would benefit from.**
This will not determine if it's developed, but help guide the team and community on where development begins.

**Are you willing and interested in being engaged during the development and testing process?**
7 changes: 7 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@


# Critical Changes

# Changes

# Issues Closed
10 changes: 10 additions & 0 deletions .github/workflows/beta.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: Upload Beta Release (2GP)
on:
push:
branches:
- 'main'
jobs:
upload-beta:
uses: SFDO-Community/standard-workflows/.github/workflows/beta-2gp.yml@main
secrets:
dev-hub-auth-url: '${{ secrets.PACKAGING_ORG_AUTH_URL }}'
12 changes: 12 additions & 0 deletions .github/workflows/feature.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: "Feature Test"
on:
push:
branches:
- feature/**

jobs:
feature-test:
name: "Feature Test"
uses: "SFDO-Community/standard-workflows/.github/workflows/feature.yml@main"
secrets:
dev-hub-auth-url: "${{ secrets.DEV_HUB_AUTH_URL }}"
8 changes: 8 additions & 0 deletions .github/workflows/prod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
on:
workflow_dispatch:
jobs:
upload-production-release-2gp:
name: "Upload Production Release (2GP)"
uses: SFDO-Community/standard-workflows/.github/workflows/production-2gp.yml@main
secrets:
dev-hub-auth-url: '${{ secrets.PACKAGING_ORG_AUTH_URL }}'
152 changes: 76 additions & 76 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,77 +1,77 @@
# This file is used for Git repositories to specify intentionally untracked files that Git should ignore.
# If you are not using git, you can delete this file. For more information see: https://git-scm.com/docs/gitignore
# For useful gitignore templates see: https://github.com/github/gitignore

# Salesforce cache
.sf/
.sfdx/
.localdevserver/
deploy-options.json
sfdx-project.json
README.md

# CCI
.cci
/src.orig
/src

# Python
*.pyc
__pycache__

# Robot Framework results
robot/Salesforce-Indicators/results/

# LWC VSCode autocomplete
**/lwc/jsconfig.json

# LWC Jest coverage reports
coverage/

# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Dependency directories
node_modules/

# Eslint cache
.eslintcache

# MacOS system files
.DS_Store

# Windows system files
Thumbs.db
ehthumbs.db
[Dd]esktop.ini
$RECYCLE.BIN/

# Editors
*.sublime-project
*.sublime-workspace
.vscode
.idea
.project
.settings

# VS Code project settings
.vscode/
/config/*
/force-app/*
force-app/main/default/appMenus/AppSwitcher.appMenu-meta.xml
force-app/main/default/applications/Account.app-meta.xml
force-app/main/default/flexipages/Account_Record_Page.flexipage-meta.xml
force-app/main/default/flexipages/Account_UtilityBar.flexipage-meta.xml
force-app/main/default/flexipages/Base_Account_Page.flexipage-meta.xml
force-app/main/default/profiles/Admin.profile-meta.xml
/force-app/main/default/flexipages/Account_Record_Page.flexipage-meta.xml
/force-app/main/default/flexipages/Account_Record_Page1.flexipage-meta.xml
/force-app/main/default/layouts/Account-Account Layout.layout-meta.xml
/force-app/main/default/objects/Account/fields/Checkbox__c.field-meta.xml
/force-app/main/default/profiles

# This file is used for Git repositories to specify intentionally untracked files that Git should ignore.
# If you are not using git, you can delete this file. For more information see: https://git-scm.com/docs/gitignore
# For useful gitignore templates see: https://github.com/github/gitignore

# Salesforce cache
.sf/
.sfdx/
.localdevserver/
deploy-options.json
sfdx-project.json
README.md

# CCI
.cci
/src.orig
/src

# Python
*.pyc
__pycache__

# Robot Framework results
robot/Salesforce-Indicators/results/

# LWC VSCode autocomplete
**/lwc/jsconfig.json

# LWC Jest coverage reports
coverage/

# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Dependency directories
node_modules/

# Eslint cache
.eslintcache

# MacOS system files
.DS_Store

# Windows system files
Thumbs.db
ehthumbs.db
[Dd]esktop.ini
$RECYCLE.BIN/

# Editors
*.sublime-project
*.sublime-workspace
.vscode
.idea
.project
.settings

# VS Code project settings
.vscode/
/config/*
/force-app/*
force-app/main/default/appMenus/AppSwitcher.appMenu-meta.xml
force-app/main/default/applications/Account.app-meta.xml
force-app/main/default/flexipages/Account_Record_Page.flexipage-meta.xml
force-app/main/default/flexipages/Account_UtilityBar.flexipage-meta.xml
force-app/main/default/flexipages/Base_Account_Page.flexipage-meta.xml
force-app/main/default/profiles/Admin.profile-meta.xml
/force-app/main/default/flexipages/Account_Record_Page.flexipage-meta.xml
/force-app/main/default/flexipages/Account_Record_Page1.flexipage-meta.xml
/force-app/main/default/layouts/Account-Account Layout.layout-meta.xml
/force-app/main/default/objects/Account/fields/Checkbox__c.field-meta.xml
/force-app/main/default/profiles

/old-versions/*
117 changes: 117 additions & 0 deletions checkmarx-reports/report_phxcmarxwp001_63146.html

Large diffs are not rendered by default.

35 changes: 35 additions & 0 deletions cumulusci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
minimum_cumulusci_version: '3.68.1'
project:
name: Salesforce-Indicators
package:
name: Salesforce-Indicators
namespace: inds
api_version: '55.0'
git:
default_branch: 'master'
test:
name_match: '%Tests'
source_format: sfdx

orgs:
scratch:
dev:
config_file: orgs/dev.json
days: 30
namespaced: True

tasks:
robot:
options:
suites: robot/Salesforce-Indicators/tests
options:
outputdir: robot/Salesforce-Indicators/results

robot_testdoc:
options:
path: robot/Salesforce-Indicators/tests
output: robot/Salesforce-Indicators/doc/Salesforce-Indicators_tests.html

run_tests:
options:
required_org_code_coverage_percent: 75
Loading

0 comments on commit d5ce413

Please sign in to comment.