├── .all-contributorsrc ├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .github ├── ISSUE_TEMPLATE │ ├── BUG.yml │ └── config.yml ├── actions │ ├── get-configurations │ │ └── action.yml │ ├── run-import-solutions │ │ └── action.yml │ └── set-canvasapps-instrumentation-key │ │ └── action.yml ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── build-managed-solution.yml │ ├── clean-dev-workspace-when-issue-closed-or-deleted.yml │ ├── create-dataverse-environment.yml │ ├── create-deploy-release.yml │ ├── export-and-unpack-solution.yml │ ├── import-solution-to-dev.yml │ ├── import-solution-to-validation.yml │ ├── import-solution.yml │ ├── powershell-analysis.yml │ ├── solution-quality-check-on-pr.yml │ └── workspace-initialization.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Configurations └── configurations.json ├── Documentation ├── ALM-Strategy.md ├── Add-Solution.md ├── Custom-Deployment-Settings-File-Management.md ├── Repository-Content.md └── Repository-Setup.md ├── LICENSE ├── README.md └── Scripts ├── Add-AADSecurityGroupTeamToDataverseEnvironment.ps1 ├── Add-UserToDataverseEnvironment.ps1 ├── Enable-CloudFlows.ps1 ├── Grant-GroupsAccessToCanvasApps.ps1 └── New-DataverseEnvironment.ps1 /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpothin/PowerPlatform-ALM-With-GitHub-Template/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpothin/PowerPlatform-ALM-With-GitHub-Template/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpothin/PowerPlatform-ALM-With-GitHub-Template/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpothin/PowerPlatform-ALM-With-GitHub-Template/HEAD/.github/ISSUE_TEMPLATE/BUG.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpothin/PowerPlatform-ALM-With-GitHub-Template/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/actions/get-configurations/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpothin/PowerPlatform-ALM-With-GitHub-Template/HEAD/.github/actions/get-configurations/action.yml -------------------------------------------------------------------------------- /.github/actions/run-import-solutions/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpothin/PowerPlatform-ALM-With-GitHub-Template/HEAD/.github/actions/run-import-solutions/action.yml -------------------------------------------------------------------------------- /.github/actions/set-canvasapps-instrumentation-key/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpothin/PowerPlatform-ALM-With-GitHub-Template/HEAD/.github/actions/set-canvasapps-instrumentation-key/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpothin/PowerPlatform-ALM-With-GitHub-Template/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpothin/PowerPlatform-ALM-With-GitHub-Template/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build-managed-solution.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpothin/PowerPlatform-ALM-With-GitHub-Template/HEAD/.github/workflows/build-managed-solution.yml -------------------------------------------------------------------------------- /.github/workflows/clean-dev-workspace-when-issue-closed-or-deleted.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpothin/PowerPlatform-ALM-With-GitHub-Template/HEAD/.github/workflows/clean-dev-workspace-when-issue-closed-or-deleted.yml -------------------------------------------------------------------------------- /.github/workflows/create-dataverse-environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpothin/PowerPlatform-ALM-With-GitHub-Template/HEAD/.github/workflows/create-dataverse-environment.yml -------------------------------------------------------------------------------- /.github/workflows/create-deploy-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpothin/PowerPlatform-ALM-With-GitHub-Template/HEAD/.github/workflows/create-deploy-release.yml -------------------------------------------------------------------------------- /.github/workflows/export-and-unpack-solution.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpothin/PowerPlatform-ALM-With-GitHub-Template/HEAD/.github/workflows/export-and-unpack-solution.yml -------------------------------------------------------------------------------- /.github/workflows/import-solution-to-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpothin/PowerPlatform-ALM-With-GitHub-Template/HEAD/.github/workflows/import-solution-to-dev.yml -------------------------------------------------------------------------------- /.github/workflows/import-solution-to-validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpothin/PowerPlatform-ALM-With-GitHub-Template/HEAD/.github/workflows/import-solution-to-validation.yml -------------------------------------------------------------------------------- /.github/workflows/import-solution.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpothin/PowerPlatform-ALM-With-GitHub-Template/HEAD/.github/workflows/import-solution.yml -------------------------------------------------------------------------------- /.github/workflows/powershell-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpothin/PowerPlatform-ALM-With-GitHub-Template/HEAD/.github/workflows/powershell-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/solution-quality-check-on-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpothin/PowerPlatform-ALM-With-GitHub-Template/HEAD/.github/workflows/solution-quality-check-on-pr.yml -------------------------------------------------------------------------------- /.github/workflows/workspace-initialization.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpothin/PowerPlatform-ALM-With-GitHub-Template/HEAD/.github/workflows/workspace-initialization.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpothin/PowerPlatform-ALM-With-GitHub-Template/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpothin/PowerPlatform-ALM-With-GitHub-Template/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpothin/PowerPlatform-ALM-With-GitHub-Template/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpothin/PowerPlatform-ALM-With-GitHub-Template/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Configurations/configurations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpothin/PowerPlatform-ALM-With-GitHub-Template/HEAD/Configurations/configurations.json -------------------------------------------------------------------------------- /Documentation/ALM-Strategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpothin/PowerPlatform-ALM-With-GitHub-Template/HEAD/Documentation/ALM-Strategy.md -------------------------------------------------------------------------------- /Documentation/Add-Solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpothin/PowerPlatform-ALM-With-GitHub-Template/HEAD/Documentation/Add-Solution.md -------------------------------------------------------------------------------- /Documentation/Custom-Deployment-Settings-File-Management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpothin/PowerPlatform-ALM-With-GitHub-Template/HEAD/Documentation/Custom-Deployment-Settings-File-Management.md -------------------------------------------------------------------------------- /Documentation/Repository-Content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpothin/PowerPlatform-ALM-With-GitHub-Template/HEAD/Documentation/Repository-Content.md -------------------------------------------------------------------------------- /Documentation/Repository-Setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpothin/PowerPlatform-ALM-With-GitHub-Template/HEAD/Documentation/Repository-Setup.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpothin/PowerPlatform-ALM-With-GitHub-Template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpothin/PowerPlatform-ALM-With-GitHub-Template/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/Add-AADSecurityGroupTeamToDataverseEnvironment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpothin/PowerPlatform-ALM-With-GitHub-Template/HEAD/Scripts/Add-AADSecurityGroupTeamToDataverseEnvironment.ps1 -------------------------------------------------------------------------------- /Scripts/Add-UserToDataverseEnvironment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpothin/PowerPlatform-ALM-With-GitHub-Template/HEAD/Scripts/Add-UserToDataverseEnvironment.ps1 -------------------------------------------------------------------------------- /Scripts/Enable-CloudFlows.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpothin/PowerPlatform-ALM-With-GitHub-Template/HEAD/Scripts/Enable-CloudFlows.ps1 -------------------------------------------------------------------------------- /Scripts/Grant-GroupsAccessToCanvasApps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpothin/PowerPlatform-ALM-With-GitHub-Template/HEAD/Scripts/Grant-GroupsAccessToCanvasApps.ps1 -------------------------------------------------------------------------------- /Scripts/New-DataverseEnvironment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpothin/PowerPlatform-ALM-With-GitHub-Template/HEAD/Scripts/New-DataverseEnvironment.ps1 --------------------------------------------------------------------------------