From 6064f5183dd4bd939b099469884cf82767d68738 Mon Sep 17 00:00:00 2001 From: Yoavast <98748304+Yoavast@users.noreply.github.com> Date: Tue, 13 Dec 2022 19:56:16 +0200 Subject: [PATCH 1/6] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 12e93c9..3807fb0 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,3 @@ # GH Demo main +test From 37ebbca7b7729e08c70b926ab7c379b0b2c599ca Mon Sep 17 00:00:00 2001 From: Yoavast <98748304+Yoavast@users.noreply.github.com> Date: Tue, 10 Jan 2023 11:46:43 +0200 Subject: [PATCH 2/6] Set up CI with Azure Pipelines [skip ci] --- azure-pipelines.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..b6d9a4e --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,29 @@ +# Docker +# Build a Docker image +# https://docs.microsoft.com/azure/devops/pipelines/languages/docker + +trigger: +- main + +resources: +- repo: self + +variables: + tag: '$(Build.BuildId)' + +stages: +- stage: Build + displayName: Build image + jobs: + - job: Build + displayName: Build + pool: + vmImage: ubuntu-latest + steps: + - task: Docker@2 + displayName: Build an image + inputs: + command: build + dockerfile: '$(Build.SourcesDirectory)/Dockerfile' + tags: | + $(tag) From 52afddbb28d59659094b0432339b1e047f1abb80 Mon Sep 17 00:00:00 2001 From: Yoavast <98748304+Yoavast@users.noreply.github.com> Date: Mon, 27 Feb 2023 12:48:16 +0200 Subject: [PATCH 3/6] Create Feedbackapp.yml --- .github/workflows/Feedbackapp.yml | 34 +++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/Feedbackapp.yml diff --git a/.github/workflows/Feedbackapp.yml b/.github/workflows/Feedbackapp.yml new file mode 100644 index 0000000..390510a --- /dev/null +++ b/.github/workflows/Feedbackapp.yml @@ -0,0 +1,34 @@ +# This is a basic workflow to help you get started with Actions + +name: Checkmarx Sarif Integration + +# Controls when the workflow will run +on: [push,pull_request,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: + # This step checks out a copy of your repository. + - name: Checkout repository + uses: actions/checkout@v2 + - name: Checkmarx scan + uses: checkmarx/ast-github-action@main + with: + base_uri: https://ast-master-components.dev.cxast.net/ + cx_client_id: ${{ secrets.CX_CLIENT_ID }} + cx_client_secret: ${{ secrets.CX_CLIENT_SECRET }} + cx_tenant: ${{ secrets.CX_TENANT }} + additional_params: --project-tags 'feedback_assignee:Yoav ast' --tags 'feedback_assignee:Vered Shahar' + + + + + + + + From a927c2ab59ab5407f59a48805fdb3fdcc553f7e9 Mon Sep 17 00:00:00 2001 From: Yoavast <98748304+Yoavast@users.noreply.github.com> Date: Mon, 27 Feb 2023 12:49:27 +0200 Subject: [PATCH 4/6] Update Feedbackapp.yml --- .github/workflows/Feedbackapp.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/Feedbackapp.yml b/.github/workflows/Feedbackapp.yml index 390510a..98592d8 100644 --- a/.github/workflows/Feedbackapp.yml +++ b/.github/workflows/Feedbackapp.yml @@ -1,6 +1,6 @@ # This is a basic workflow to help you get started with Actions -name: Checkmarx Sarif Integration +name: feedbackapp # Controls when the workflow will run on: [push,pull_request,workflow_dispatch] @@ -23,7 +23,7 @@ jobs: cx_client_id: ${{ secrets.CX_CLIENT_ID }} cx_client_secret: ${{ secrets.CX_CLIENT_SECRET }} cx_tenant: ${{ secrets.CX_TENANT }} - additional_params: --project-tags 'feedback_assignee:Yoav ast' --tags 'feedback_assignee:Vered Shahar' + additional_params: --project-tags 'feedback_assignee:Yoav ast' --tags 'feedback_assignee:Vered Shahar' --debug From 27350ae4025c26236097ebb689276df656658600 Mon Sep 17 00:00:00 2001 From: Yoavast <98748304+Yoavast@users.noreply.github.com> Date: Mon, 27 Feb 2023 14:15:43 +0200 Subject: [PATCH 5/6] Update Feedbackapp.yml --- .github/workflows/Feedbackapp.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/Feedbackapp.yml b/.github/workflows/Feedbackapp.yml index 98592d8..5256cac 100644 --- a/.github/workflows/Feedbackapp.yml +++ b/.github/workflows/Feedbackapp.yml @@ -23,7 +23,7 @@ jobs: cx_client_id: ${{ secrets.CX_CLIENT_ID }} cx_client_secret: ${{ secrets.CX_CLIENT_SECRET }} cx_tenant: ${{ secrets.CX_TENANT }} - additional_params: --project-tags 'feedback_assignee:Yoav ast' --tags 'feedback_assignee:Vered Shahar' --debug + additional_params: --project-tags 'feedback-assignee:Yoav ast' --tags 'feedback-assignee:Vered Shahar' --debug From 3f0033cc53739a47ccddad6c5863414f504a918c Mon Sep 17 00:00:00 2001 From: Tiago Baptista <92083272+tiagobcx@users.noreply.github.com> Date: Fri, 31 Mar 2023 11:53:20 +0100 Subject: [PATCH 6/6] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 12e93c9..ab62d26 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,3 @@ # GH Demo main +test pr