Skip to content

action path

action path #6

Workflow file for this run

name: Config ReaderWriter
on: push
defaults:
run:
shell: bash
jobs:
init:
name: Init
runs-on: ubuntu-latest
steps:
- name: init
run: echo 'starting ${{ github.job }}'
- name: checkout
uses: actions/checkout@v4
- name: create config
uses: ./actions/example-config-updater
with:
mode: create
continue-on-error: true
- name: done
run: echo "::notice::${{ github.job }} done"
read:
name: Read
runs-on: ubuntu-latest
needs: [init]
steps:
- name: read
run: echo 'starting ${{ github.job }}'
- name: read config
uses: ./actions/example-config-updater
with:
mode: read
continue-on-error: true
- name: done
run: echo "::notice::${{ github.job }} done"
post:
name: Post
runs-on: ubuntu-latest
needs: [read]
steps:
- name: post
run: echo 'starting ${{ github.job }}'
- name: done
run: echo "::notice::${{ github.job }} done"