-
-
Notifications
You must be signed in to change notification settings - Fork 31
Open
Labels
code-fundThis issue is part of "code fund"; see https://hezmatt.org/~mpalmer/code-fund.htmlThis issue is part of "code fund"; see https://hezmatt.org/~mpalmer/code-fund.htmlpr-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
Want to help get this issue implemented? Donate to the action-validator code fund.
This doesn't seem to detect cyclic needs on the jobs.
name: cyclic-test
on:
pull: {}
jobs:
test:
runs-on: ubuntu-latest
needs:
- test
steps:
- run: echo hello
test1:
runs-on: ubuntu-latest
needs:
- test2
steps:
- run: echo hello
test2:
runs-on: ubuntu-latest
needs:
- test1
steps:
- run: echo helloReactions are currently unavailable
Metadata
Metadata
Assignees
Labels
code-fundThis issue is part of "code fund"; see https://hezmatt.org/~mpalmer/code-fund.htmlThis issue is part of "code fund"; see https://hezmatt.org/~mpalmer/code-fund.htmlpr-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