feat: new augments and update item description (amber items) #2614
Workflow file for this run
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: Build - Docker (dummy) | |
on: | |
workflow_dispatch: | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
paths-ignore: | |
- "src/**" | |
jobs: | |
build_docker_x86: | |
if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }} | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "This is a dummy job to satisfy branch protection checks" | |
build_docker_arm: | |
if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }} | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "This is a dummy job to satisfy branch protection checks" |