feat: Add search to guardian directory (#1183) #41
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
name: Portal Client Docker Build and Save Cache | |
on: | |
workflow_dispatch: | |
push: | |
paths-ignore: | |
- 'docs/**' | |
- '**.md**' | |
branches: [main] | |
jobs: | |
build-and-cache-portal-client: | |
uses: USSF-ORBIT/ussf-portal/.github/workflows/reusable-docker-cache-portal-client.yml@main | |
trigger-build-and-cache-in-other-repos: | |
runs-on: ubuntu-latest | |
steps: | |
- name: call GH API to trigger caching workflow in CMS repo | |
run: gh workflow run build-portal-client-docker-cache.yml -R USSF-ORBIT/ussf-portal-cms --ref main | |
env: | |
GH_TOKEN: ${{secrets.PUBLIC_REPO_READ}} | |
- name: call GH API to trigger caching workflow in personnel api repo | |
run: gh workflow run build-portal-client-docker-cache.yml -R USSF-ORBIT/ussf-personnel-api --ref main | |
env: | |
GH_TOKEN: ${{secrets.PUBLIC_REPO_READ}} | |
- name: call GH API to trigger caching workflow in ussf-portal repo | |
run: gh workflow run reusable-docker-cache-portal-client.yml -R USSF-ORBIT/ussf-portal --ref main | |
env: | |
GH_TOKEN: ${{secrets.PUBLIC_REPO_READ}} |