Skip to content
Merged
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
6 changes: 1 addition & 5 deletions .github/workflows/build-image.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
name: Build Docker Image
on:
workflow_dispatch:
workflow_call:

permissions:
contents: read
security-events: write
actions: read

jobs:
# Build Docker Image
Expand Down
7 changes: 1 addition & 6 deletions .github/workflows/lint-format.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
name: Linting and Formating checks
on:
workflow_dispatch:

permissions:
contents: read
security-events: write
actions: read
workflow_call:

jobs:
# Run Pylint and Black formatter
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ permissions:
security-events: write
actions: read


jobs:
build-image:
uses: ./.github/workflows/build-image.yml
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/push-image.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
name: Push Contianer to Docker Hub
on:
workflow_dispatch:
workflow_call:

permissions:
contents: read
security-events: write
actions: read

jobs:

Expand Down
8 changes: 1 addition & 7 deletions .github/workflows/unit-sec-test.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
name: Unit and Security Testing
on:
workflow_dispatch:


permissions:
contents: read
security-events: write
actions: read
workflow_call:

jobs:
# Run unit test cases for the Docker image
Expand Down