[Wait] Implemented the core of executing Wait with WaitStageOptions #3725
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: gen | |
on: | |
pull_request: | |
branches: [ master ] | |
jobs: | |
code: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Generate code | |
# NOTE: Keep this container image as same as defined in Makefile | |
uses: docker://ghcr.io/pipe-cd/codegen@sha256:fcb600d82cc4acc76f532c292445f868dfa176d6db116b6c5b18b81a1b1c5fa9 #v0.50.0-51-gb98a963 | |
with: | |
entrypoint: ./tool/codegen/codegen.sh | |
args: /github/workspace | |
- name: Show Git status | |
shell: bash | |
run: git status | |
- name: Validate | |
shell: bash | |
run: test -z "$(git status --porcelain)" |