From 3a3637a699f9b3eb099184639c479b4e920a778e Mon Sep 17 00:00:00 2001 From: Seth K <44306652+sethkaz@users.noreply.github.com> Date: Wed, 19 Jul 2023 16:42:10 -0700 Subject: [PATCH] Add optional step for github yaml --- docs/GITHUB-ACTIONS-README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/GITHUB-ACTIONS-README.md b/docs/GITHUB-ACTIONS-README.md index 0ec7a146..364c3130 100644 --- a/docs/GITHUB-ACTIONS-README.md +++ b/docs/GITHUB-ACTIONS-README.md @@ -27,6 +27,11 @@ jobs: # List of jobs to be run. Can be used to better organize steps. - name: Run KiBot run: | kibot -e "project_name.kicad_sch" + + # Post KiBot steps (Optional). + - name: Optionally do other things + run: | + ECHO Run bash commands to do things like commiting the files or adding them as artifacts ```