lashkinaziy commented on issue #7073:
URL:
https://github.com/apache/incubator-devlake/issues/7073#issuecomment-2088819815
Hi @klesh. I ran into the same issue with 1.0.0-beta6. Using the CircleCI
config below and setting the name to `build-stuff` is seen as deployment by
DevLake. Setting the name to `deploy` is not seen as deployment. DevLake seems
to be matching on workflow name only and ignoring the job name.
```yaml
version: 2.1
jobs:
build-image:
docker:
- image: "cimg/base:stable"
steps:
- run:
name: "building-image"
command: |
echo "We are pretending to build an image!"
sleep 15
echo "pipeline.id is << pipeline.id >>"
echo "pipeline.number is << pipeline.number >>"
deploy:
docker:
- image: "cimg/base:stable"
steps:
- run:
name: "update-chart-of-helm"
command: |
echo "We are pretending to update Helm chart!"
sleep 15
echo "Done!!"
workflows:
build-stuff:
jobs:
- build-image:
name: build
- deploy:
name: deploy
requires:
- build
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]