├── .github ├── ISSUE_TEMPLATE_DEPLOYMENT.md └── workflows │ ├── CICD.yml │ ├── Conditions.yml │ ├── SCMTrigger.yml │ ├── SonarScanner-Windows.yml │ ├── Upload Download Artifacts.yml │ ├── action_for_ghcr.yaml │ ├── caller_repo_dispatch.yml │ ├── compositeActionUse.yml │ ├── conditions.yml │ ├── issueOpener.yml │ ├── issueResponder.yml │ ├── logsecrets.yml │ ├── main.yml │ ├── manualtriggerinputs.yaml │ ├── publishNuGetPackage.yml │ ├── reusableWorkflowsUser.yml │ ├── ring-deploy-api-template.yaml │ ├── ring-deploy-db+api-template.yaml │ ├── ring-deploy-db-template.yaml │ ├── ring-deploy.yml │ ├── target_repo_dispatch.yml │ ├── tokenExamples.yml │ └── variable_concatenation.yml ├── Dockerfile └── README.md /.github/ISSUE_TEMPLATE_DEPLOYMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3wt0n/ActionsTest/HEAD/.github/ISSUE_TEMPLATE_DEPLOYMENT.md -------------------------------------------------------------------------------- /.github/workflows/CICD.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3wt0n/ActionsTest/HEAD/.github/workflows/CICD.yml -------------------------------------------------------------------------------- /.github/workflows/Conditions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3wt0n/ActionsTest/HEAD/.github/workflows/Conditions.yml -------------------------------------------------------------------------------- /.github/workflows/SCMTrigger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3wt0n/ActionsTest/HEAD/.github/workflows/SCMTrigger.yml -------------------------------------------------------------------------------- /.github/workflows/SonarScanner-Windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3wt0n/ActionsTest/HEAD/.github/workflows/SonarScanner-Windows.yml -------------------------------------------------------------------------------- /.github/workflows/Upload Download Artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3wt0n/ActionsTest/HEAD/.github/workflows/Upload Download Artifacts.yml -------------------------------------------------------------------------------- /.github/workflows/action_for_ghcr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3wt0n/ActionsTest/HEAD/.github/workflows/action_for_ghcr.yaml -------------------------------------------------------------------------------- /.github/workflows/caller_repo_dispatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3wt0n/ActionsTest/HEAD/.github/workflows/caller_repo_dispatch.yml -------------------------------------------------------------------------------- /.github/workflows/compositeActionUse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3wt0n/ActionsTest/HEAD/.github/workflows/compositeActionUse.yml -------------------------------------------------------------------------------- /.github/workflows/conditions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3wt0n/ActionsTest/HEAD/.github/workflows/conditions.yml -------------------------------------------------------------------------------- /.github/workflows/issueOpener.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3wt0n/ActionsTest/HEAD/.github/workflows/issueOpener.yml -------------------------------------------------------------------------------- /.github/workflows/issueResponder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3wt0n/ActionsTest/HEAD/.github/workflows/issueResponder.yml -------------------------------------------------------------------------------- /.github/workflows/logsecrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3wt0n/ActionsTest/HEAD/.github/workflows/logsecrets.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3wt0n/ActionsTest/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/manualtriggerinputs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3wt0n/ActionsTest/HEAD/.github/workflows/manualtriggerinputs.yaml -------------------------------------------------------------------------------- /.github/workflows/publishNuGetPackage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3wt0n/ActionsTest/HEAD/.github/workflows/publishNuGetPackage.yml -------------------------------------------------------------------------------- /.github/workflows/reusableWorkflowsUser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3wt0n/ActionsTest/HEAD/.github/workflows/reusableWorkflowsUser.yml -------------------------------------------------------------------------------- /.github/workflows/ring-deploy-api-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3wt0n/ActionsTest/HEAD/.github/workflows/ring-deploy-api-template.yaml -------------------------------------------------------------------------------- /.github/workflows/ring-deploy-db+api-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3wt0n/ActionsTest/HEAD/.github/workflows/ring-deploy-db+api-template.yaml -------------------------------------------------------------------------------- /.github/workflows/ring-deploy-db-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3wt0n/ActionsTest/HEAD/.github/workflows/ring-deploy-db-template.yaml -------------------------------------------------------------------------------- /.github/workflows/ring-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3wt0n/ActionsTest/HEAD/.github/workflows/ring-deploy.yml -------------------------------------------------------------------------------- /.github/workflows/target_repo_dispatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3wt0n/ActionsTest/HEAD/.github/workflows/target_repo_dispatch.yml -------------------------------------------------------------------------------- /.github/workflows/tokenExamples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3wt0n/ActionsTest/HEAD/.github/workflows/tokenExamples.yml -------------------------------------------------------------------------------- /.github/workflows/variable_concatenation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3wt0n/ActionsTest/HEAD/.github/workflows/variable_concatenation.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM alpine 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n3wt0n/ActionsTest/HEAD/README.md --------------------------------------------------------------------------------