We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If I use .woodpecker as config_path for my repo with two pipeline files:
.woodpecker
# .test.yml pipeline: test: image: golang:1.16 group: test commands: - make formatcheck
# .release.yml pipeline: release: image: ghcr.io/goreleaser/goreleaser:v0.174.1 secrets: [github_token, docker_username, docker_password] commands: - goreleaser release when: event: [tag, push] branch: master depends_on: - test # instead the following line would work # - "woodpecker/.test"
This comes from a bug inside the procBuilder not deleting the confiured config_path value.
If the name of the depends_on is not found, the job simply gets removed. For a better UX it could be a better solution to throw an error.
depends_on
The text was updated successfully, but these errors were encountered:
Use custom config path to sanitize build names (#280)
8aeae0a
fix #270
a0a58c5
Successfully merging a pull request may close this issue.
If I use
.woodpecker
as config_path for my repo with two pipeline files:This comes from a bug inside the procBuilder not deleting the confiured config_path value.
If the name of the
depends_on
is not found, the job simply gets removed. For a better UX it could be a better solution to throw an error.The text was updated successfully, but these errors were encountered: