-
-
Notifications
You must be signed in to change notification settings - Fork 31
Open
Labels
pr-welcomeThis would be a good fix/feature, but the maintainer isn't planning on doing the workThis would be a good fix/feature, but the maintainer isn't planning on doing the work
Description
A slightly more complicated one, but it would be good if it could detect missing needs from needs context use. You could also do the same for the steps context
name: cyclic-test
on:
pull: {}
jobs:
test:
runs-on: ubuntu-latest
outputs:
test: ${{ steps.step1.test }}
steps:
- id: step1
run: echo test=hello >> "$GITHUB_OUTPUT"
test1:
runs-on: ubuntu-latest
outputs:
# step missing
test: ${{ steps.step1.test }}
steps:
# need missing
- run: echo ${{ needs.test.outputs.test }}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
pr-welcomeThis would be a good fix/feature, but the maintainer isn't planning on doing the workThis would be a good fix/feature, but the maintainer isn't planning on doing the work