From b64a471d6495c1568870863f7c0dc9e4f2884417 Mon Sep 17 00:00:00 2001 From: Dragos Daniel Boia <19934057+DragosDanielBoia@users.noreply.github.com> Date: Wed, 19 Oct 2022 10:36:27 -0700 Subject: [PATCH 1/3] Add Platformcontext config for microsoft-github-policy-service --- policies/platformcontext.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 policies/platformcontext.yml diff --git a/policies/platformcontext.yml b/policies/platformcontext.yml new file mode 100644 index 0000000..2a22ae6 --- /dev/null +++ b/policies/platformcontext.yml @@ -0,0 +1,10 @@ +name: platform_context +description: The context for GitOps platform, this will drive GitOps specific policies +owner: +resource: repository +where: +configuration: + platformContext: + active: true +onFailure: +onSuccess: From 216d24bf93fe8b0247ba95e0acba5eb325782f93 Mon Sep 17 00:00:00 2001 From: RockySpade69 Date: Fri, 26 Jan 2024 19:27:20 -0800 Subject: [PATCH 2/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a46ae92..26f5c15 100644 --- a/README.md +++ b/README.md @@ -1 +1 @@ -# .github \ No newline at end of file +.github From b2462fb10f42a61f9bfb116b50daf01570e2f8a0 Mon Sep 17 00:00:00 2001 From: RockySpade Date: Tue, 16 Apr 2024 13:08:33 -0700 Subject: [PATCH 3/3] Create blank.yml --- .github/workflows/blank.yml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/blank.yml diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml new file mode 100644 index 0000000..18a6a3e --- /dev/null +++ b/.github/workflows/blank.yml @@ -0,0 +1,36 @@ +# This is a basic workflow to help you get started with Actions + +name: CI + +# Controls when the workflow will run +on: + # Triggers the workflow on push or pull request events but only for the "main" branch + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v3 + + # Runs a single command using the runners shell + - name: Run a one-line script + run: echo Hello, world! + + # Runs a set of commands using the runners shell + - name: Run a multi-line script + run: | + echo Add other actions to build, + echo test, and deploy your project.