26088 add optional filter params for search (#1794) #7
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: Namex Solr Feeder CD | ||
| on: | ||
| push: | ||
| branches: | ||
| - main | ||
| paths: | ||
| - "solr-feeder/**" | ||
| workflow_dispatch: | ||
| inputs: | ||
| target: | ||
| description: "Deploy To" | ||
| required: true | ||
| type: choice | ||
| options: | ||
| - dev | ||
| - test | ||
| - sandbox | ||
| - prod | ||
| jobs: | ||
| solr-feeder-cd: | ||
|
Check failure on line 22 in .github/workflows/solr-feeder-cd.yml
|
||
| uses: bcgov/bcregistry-sre/.github/workflows/backend-cd.yaml@main | ||
| with: | ||
| target: ${{ inputs.target }} | ||
| app_name: "namex-solr-feeder" | ||
| working_directory: "./solr-feeder" | ||
| secrets: | ||
| WORKLOAD_IDENTIFY_POOLS_PROVIDER: ${{ secrets.WORKLOAD_IDENTIFY_POOLS_PROVIDER }} | ||
| GCP_SERVICE_ACCOUNT: ${{ secrets.GCP_SERVICE_ACCOUNT }} | ||