Merge pull request #1110 from manuelbcd/main (#1155)

* Added Cloudrail according to instructions and existing examples

* Adding Cloudrail according to documentation and examples

* Oops

* Add original Fortify on Demand workflow

* Update Fortify on Demand workflow

* Update Fortify on Demand supported languages

* Add 3rd-party GitHub Actions disclaimer

* Sysdig Secure Inline Scan with SARIF report to starter workflows

* Added some extra comments, Github Actions V2 and changed env vars

* Reviews from PR #1110

* Adding 'Dockerfile' to category list

* Update according to PR review comments

* File renames as requested in PR comments

* Revert "Azure Data Factory CI starter workflow (#1111)" (#1146)

This reverts commit 7f30309cce.

* use env variables for user-set values (#1117)

Co-authored-by: Josh Gross <[email protected]>

* Apply suggestions from nickfyson's code review

Co-authored-by: Nick Fyson <[email protected]>

* removing "deployment" templates from sync-ghes (#1127)

* Update code-scanning/properties/sysdig-scan.properties.json

Co-authored-by: Nick Fyson <[email protected]>

* Update code-scanning/properties/sysdig-scan.properties.json

Co-authored-by: Nick Fyson <[email protected]>

* Changed svg logo

* Rename sysdig.svg to sysdig-scan.svg

* Switched svg logo (again) for a better fit

* Rename fortify.json to fortify.properties.json

Co-authored-by: Yoni Leitersdorf <[email protected]>
Co-authored-by: Ruud Senden <[email protected]>
Co-authored-by: Ruud Senden <[email protected]>
Co-authored-by: Manuel Boira Cuevas <[email protected]>
Co-authored-by: manuelbcd <[email protected]>
Co-authored-by: Nick Fyson <[email protected]>
Co-authored-by: Sarah Edwards <[email protected]>
Co-authored-by: Josh Gross <[email protected]>
Co-authored-by: Aparna Ravindra <[email protected]>
Co-authored-by: manuelbcd <[email protected]>
This commit is contained in:
Ashwin Sangem
2021-10-08 17:31:42 +05:30
committed by GitHub
co-authored by Josh Gross Nick Fyson Yoni Leitersdorf Ruud Senden Ruud Senden Manuel Boira Cuevas manuelbcd Sarah Edwards Aparna Ravindra manuelbcd
parent 13f632a90b
commit cbd5b645f1
14 changed files with 307 additions and 68 deletions
-47
View File
@@ -1,47 +0,0 @@
# Sample workflow to validate Azure Data Factory resources and export its ARM template as an artifact
# Note: Ensure you have the following package.json in the same directory of your ADF resources
# {
# "scripts":{
# "build":"node node_modules/@microsoft/azure-data-factory-utilities/lib/index"
# },
# "dependencies":{
# "@microsoft/azure-data-factory-utilities":"^0.1.5"
# }
# }
name: Data Factory CI
on:
pull_request:
branches: [ $default-branch, $protected-branches ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Code checkout
uses: actions/checkout@v2
- name: Validate
uses: Azure/[email protected]
# with:
# path: <data-factory-dir> # replace by the folder that contains the Data Factory resources and the package.json
# Generate the ARM template into the destination folder, which is the same as selecting "Publish" from the UX.
# The ARM template generated isn't published to the live version of the factory.
- name: Export ARM Template
id: export
uses: Azure/[email protected]
# with:
# path: <data-factory-dir> # replace by the folder that contains the Data Factory resources and the package.json
- name: Publish artifact
uses: actions/upload-artifact@v2
with:
name: Data Factory package
path: ${{ steps.export.outputs.arm-template-directory }}
if-no-files-found: error
@@ -1,7 +0,0 @@
{
"name": "Azure Data Factory",
"creator": "Microsoft Azure",
"description": "Build and validate Azure Data Factory resources",
"iconName": "azure-data-factory",
"categories": ["Continuous integration", "Azure Data Factory"]
}