├── .github └── workflows │ ├── deploy-PPSolution-to-dev.yml │ ├── deploy-PPSolution-to-prod.yml │ └── deploy-PPSolution-to-test.yml ├── .gitignore ├── README.md └── SECURITY.md /.github/workflows/deploy-PPSolution-to-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerplatform-actionstemplate/HEAD/.github/workflows/deploy-PPSolution-to-dev.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-PPSolution-to-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerplatform-actionstemplate/HEAD/.github/workflows/deploy-PPSolution-to-prod.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-PPSolution-to-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerplatform-actionstemplate/HEAD/.github/workflows/deploy-PPSolution-to-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerplatform-actionstemplate/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerplatform-actionstemplate/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerplatform-actionstemplate/HEAD/SECURITY.md --------------------------------------------------------------------------------