Break on success when alert already has decision (#997) (#999)

* Break on success when alert already has decision (#997)

Signed-off-by: Shivam Sandbhor <shivam.sandbhor@gmail.com>
This commit is contained in:
AlteredCoder 2021-10-05 11:30:34 +02:00 committed by GitHub
parent 079172568a
commit 0ccc69696b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 7 deletions

View file

@ -12,8 +12,6 @@ jobs:
hubtest:
name: Hub tests
runs-on: ubuntu-latest
env:
PUSH_COVERAGE: ${{ github.ref == 'refs/heads/master' }}
steps:
- name: Set up Go 1.16
uses: actions/setup-go@v1
@ -54,7 +52,7 @@ jobs:
echo "SCENARIO_BADGE_COLOR=$(if [ $SCENARIOS_COV_NUMBER -lt '70' ]; then echo 'red'; else echo 'green'; fi)" >> $GITHUB_ENV
- name: Create Parsers badge
uses: schneegans/dynamic-badges-action@v1.1.0
if: ${{ env.PUSH_COVERAGE }}
if: ${{ github.ref == 'refs/heads/master' }}
with:
auth: ${{ secrets.GIST_BADGES_SECRET }}
gistID: ${{ secrets.GIST_BADGES_ID }}
@ -64,13 +62,11 @@ jobs:
color: ${{ env.SCENARIO_BADGE_COLOR }}
- name: Create Scenarios badge
uses: schneegans/dynamic-badges-action@v1.1.0
if: ${{ env.PUSH_COVERAGE }}
if: ${{ github.ref == 'refs/heads/master' }}
with:
auth: ${{ secrets.GIST_BADGES_SECRET }}
gistID: ${{ secrets.GIST_BADGES_ID }}
filename: crowdsec_scenarios_badge.json
label: Hub Scenarios
message: ${{ env.SCENARIOS_COV }}
color: ${{ env.SCENARIO_BADGE_COLOR }}
color: ${{ env.SCENARIO_BADGE_COLOR }}

View file

@ -138,6 +138,9 @@ func (c *Controller) CreateAlert(gctx *gin.Context) {
continue
}
c.sendAlertToPluginChannel(alert, uint(pIdx))
if profile.OnSuccess == "break" {
break
}
}
continue
}