Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
mcascone committed Aug 14, 2024
1 parent 472c66f commit 4bb8ee8
Showing 1 changed file with 40 additions and 1 deletion.
41 changes: 40 additions & 1 deletion .github/workflows/configtest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,43 @@ jobs:

steps:
- name: init
run: echo "init"
run: echo 'starting init'

- name: create config
uses: ./actions/example-config-updater
with:
mode: create
continue-on-error: true

- name: done
run: echo '${{ github.job }} done' >> $GITHUB_STEP_SUMMARY

read:
name: Read
runs-on: ubuntu-latest
needs: [init]

steps:
- name: read
run: echo 'starting read'

- name: read config
uses: ./actions/example-config-updater
with:
mode: read
continue-on-error: true

- name: done
run: echo '${{ github.job }} done' >> $GITHUB_STEP_SUMMARY

post:
name: Post
runs-on: ubuntu-latest
needs: [read]

steps:
- name: post
run: echo 'starting post'

- name: done
run: echo '${{ github.job }} done' >> $GITHUB_STEP_SUMMARY

0 comments on commit 4bb8ee8

Please sign in to comment.