fraud protection: Add metric to track drained bucket count #5684 #762
This file contains hidden or 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
| name: CI - Branches | |
| on: | |
| push: | |
| branches: | |
| - '*' | |
| - '!gh-pages' | |
| - '!ui-review*' | |
| jobs: | |
| checks: | |
| if: ${{ github.repository != 'oursky/authgear-server' }} | |
| uses: ./.github/workflows/run-checks.yaml | |
| builds: | |
| if: ${{ github.repository != 'oursky/authgear-server' }} | |
| needs: checks | |
| secrets: inherit | |
| uses: ./.github/workflows/run-builds.yaml | |
| with: | |
| push_image: ${{ github.repository == 'authgear/authgear-server' }} | |
| sonarcloud: | |
| if: ${{ github.ref == 'refs/heads/main' && github.repository == 'authgear/authgear-server' }} | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Analyze with SonarCloud | |
| shell: bash | |
| env: | |
| SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
| run: | | |
| docker run \ | |
| --rm \ | |
| -e SONAR_SCANNER_OPTS=" \ | |
| -Dsonar.host.url=https://sonarcloud.io \ | |
| -Dsonar.projectBaseDir=. \ | |
| -Dsonar.organization=authgear \ | |
| -Dsonar.projectKey=authgear_authgear-server \ | |
| -Dsonar.exclusions=e2e/**,**/*.generated.*,.github/workflows/**" \ | |
| -e SONAR_TOKEN="${SONAR_TOKEN}" \ | |
| -v "${{ github.workspace }}:/usr/src" \ | |
| sonarsource/sonar-scanner-cli:latest |