Skip to content

Commit

Permalink
Updated the rest of the workflows to use concurrency and added other …
Browse files Browse the repository at this point in the history
…workflows to ignore
  • Loading branch information
ctevse committed Nov 3, 2023
1 parent 55b18b6 commit e5fab19
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/crawler-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ on:
- dev
- 'cicd/**'
paths-ignore:
- '.github/workflows/patchfinder-workflow.yml'
- '.github/workflows/pne-workflow.yml'
- '.github/workflows/reconciler-workflow.yml'
- 'productnameextractor/**'
- 'exploitfinder/**'
- 'patchfinder/**'
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/patchfinder-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,18 @@ on:
- dev
- 'cicd/**'
paths-ignore:
- '.github/workflows/crawler-workflow.yml'
- '.github/workflows/pne-workflow.yml'
- '.github/workflows/reconciler-workflow.yml'
- 'crawler/**'
- 'exploitfinder/**'
- 'productnameextractor/**'
- 'reconciler/**'

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

env:
AWS_REGION: 'us-east-1'
DB_TYPE: 'mysql'
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/pne-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,18 @@ on:
- dev
- 'cicd/**'
paths-ignore:
- '.github/workflows/patchfinder-workflow.yml'
- '.github/workflows/crawler-workflow.yml'
- '.github/workflows/reconciler-workflow.yml'
- 'crawler/**'
- 'exploitfinder/**'
- 'patchfinder/**'
- 'reconciler/**'

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

env:
AWS_REGION: 'us-east-1'
DB_TYPE: 'mysql'
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/reconciler-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,18 @@ on:
- dev
- 'cicd/**'
paths-ignore:
- '.github/workflows/patchfinder-workflow.yml'
- '.github/workflows/pne-workflow.yml'
- '.github/workflows/crawler-workflow.yml'
- 'productnameextractor/**'
- 'exploitfinder/**'
- 'patchfinder/**'
- 'crawler/**'

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

env:
AWS_REGION: 'us-east-1'
OUTPUT_DIR: 'output'
Expand Down

0 comments on commit e5fab19

Please sign in to comment.