syle: added clear log in audiences section for consistent UI #2428
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: "Pull Request Checks" | |
| on: [ push, workflow_dispatch, pull_request ] | |
| jobs: | |
| higgs-shop-sample-app: | |
| name: "Check Higgs Shop Sample App PR" | |
| uses: ./.github/workflows/higgs-shop-sample-app-pull-request.yml | |
| with: | |
| app_relative_path: "core-sdk-samples/higgs-shop-sample-app" | |
| automerge-dependabot: | |
| name: "Save PR Number for Dependabot Automerge" | |
| needs: [ higgs-shop-sample-app ] | |
| if: ${{ github.actor == 'dependabot[bot]' && github.event_name == 'pull_request' }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: "Checkout PR branch" | |
| uses: actions/checkout@v3 | |
| with: | |
| submodules: recursive | |
| fetch-depth: 0 | |
| - name: "Save Pull Request Number" | |
| run: | | |
| mkdir -p ./pr | |
| echo ${{ github.event.number }} > ./pr/NR | |
| - uses: actions/upload-artifact@v3 | |
| with: | |
| name: pr | |
| path: pr/ |