Skip to content

Add timestamp of the commit as event register flag #4108

Add timestamp of the commit as event register flag

Add timestamp of the commit as event register flag #4108

Workflow file for this run

name: gen
on:
pull_request:
branches: [ master ]
jobs:
code:
runs-on: ubuntu-24.04
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:831f2dda2f56b1d12e90f88c0cb4168f51aa4eb5907b468e74bc42670939fff2 #v0.50.0-215-g3f6a738
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)"