Skip to content

fix(TDOPS-4795): faceted search wrong plural label #4406

fix(TDOPS-4795): faceted search wrong plural label

fix(TDOPS-4795): faceted search wrong plural label #4406

Workflow file for this run

# Name of this GitHub Actions workflow.
name: Semgrep
on:
workflow_dispatch:
pull_request:
push:
branches:
- master
paths:
- .github/workflows/semgrep.yml
schedule:
- cron: '0 0 * * 0'
jobs:
semgrep:
environment: pull_request_unsafe
name: Scan
runs-on: ubuntu-latest
container:
# A Docker image with Semgrep installed. Do not change this.
image: returntocorp/semgrep
# Skip any PR created by dependabot to avoid permission issues:
if: (github.actor != 'dependabot[bot]')
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 #v3.5.3
# Run the "semgrep ci" command on the command line of the docker image.
- run: semgrep ci
env:
SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}