anchoring to the directory entries no longer works #21
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: Initiate chapter.json | |
on: | |
issues: | |
types: [opened] | |
jobs: | |
new-chapter: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Print issue inputs | |
env: | |
INPUTS: ${{ toJson(github.event.issue.inputs) }} | |
run: | | |
echo "Issue inputs: $INPUTS" | |
nested_inputs=$(echo $INPUTS | jq '.["nested-subinputs"].children') | |
echo "Nested inputs: $nested_inputs" | |