forked from 5GSEC/SentryFlow
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Disable repo check for testing
Signed-off-by: Anurag Rajawat <[email protected]>
- Loading branch information
1 parent
ee2cf85
commit f9077e7
Showing
3 changed files
with
8 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,11 +16,12 @@ concurrency: | |
|
||
jobs: | ||
files-changed: | ||
name: Detect what files changed | ||
name: Find out which files were changed | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 5 | ||
outputs: | ||
sentryflow: ${{ steps.filter.outputs.sentryflow}} | ||
envoyfilter: ${{ steps.filter.outputs.envoyfilter}} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dorny/[email protected] | ||
|
@@ -33,7 +34,7 @@ jobs: | |
- 'filter/envoy/envoy-wasm-filters/**' | ||
release-sentryflow-image: | ||
if: ${{ github.repository == '5GSEC/sentryflow' && needs.files-changed.outputs.sentryflow == 'true' }} | ||
if: ${{ needs.files-changed.outputs.sentryflow == 'true' }} | ||
name: Build and push nimbus image | ||
uses: ./.github/workflows/release-image.yaml | ||
with: | ||
|
@@ -43,7 +44,7 @@ jobs: | |
|
||
release-envoy-filter-image: | ||
needs: [ files-changed ] | ||
if: ${{ github.repository == '5GSEC/sentryflow' && needs.files-changed.outputs.envoyfilter == 'true' }} | ||
if: ${{ needs.files-changed.outputs.envoyfilter == 'true' }} | ||
name: Build and push envoyfilter's image | ||
uses: ./.github/workflows/release-image.yaml | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters