Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .github/workflows/devSecOps-pipeline.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: devSecOps-pipeline
on:
push:
branches:
- 'demo-branch'
paths-ignore:
- 'README.md'
jobs:
devSecOps:
runs-on: ubuntu-latest
steps:
- name: Code Checkout
uses: actions/checkout@v7
with:
fetch-depth: 0
- name: Secret Scanning
uses: gitleaks/gitleaks-action@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Example used to demonstrate ```docker init``` CLI for a simple Hello World Python Program


## ignore in pipeline while pushing any changes
## Run the application


Expand Down