Skip to content

Spring boot workflow patterns examples with mechanical markdown and tests #1377

New issue

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

Merged
merged 24 commits into from
May 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
6d8fdf1
Feat Add TLS & mTLS support for gRPC with root CA and insecure mode (…
cicoyle May 14, 2025
86efd21
spring boot workflow patterns initial version
salaboy May 16, 2025
d62d007
adding README for workflows
salaboy May 16, 2025
dd113b8
adding child example
salaboy May 16, 2025
d29c712
updating examples to work with markdown tests
salaboy May 16, 2025
ca95b62
running mechanical markdown for workflow examples
salaboy May 16, 2025
52adff6
Fix the issue with retries not happening correctly for Activities and…
siri-varma May 15, 2025
f3f8d23
1.5.4 (#1375)
cicoyle May 16, 2025
861b6d7
fixing order Id correlation
salaboy May 16, 2025
8284edb
fixing waiting time for tests to run
salaboy May 16, 2025
7d0fdc8
fixing app name
salaboy May 16, 2025
2f3769a
adding app name and removing log lines
salaboy May 17, 2025
ba6764d
Bump codecov/codecov-action from 5.4.2 to 5.4.3 (#1379)
dependabot[bot] May 19, 2025
7638ae9
Bump fossas/fossa-action from 1.6.0 to 1.7.0 (#1380)
dependabot[bot] May 19, 2025
8fb6698
Fix component spec parsing (#1370)
iddeepak May 19, 2025
cc11f6c
Update spring-boot-examples/workflows/README.md
salaboy May 20, 2025
c320c20
fixing comments
salaboy May 20, 2025
cd68f72
Update body.json
artur-ciocanu May 20, 2025
780c7a2
Update FanOutInWorkflow.java
artur-ciocanu May 20, 2025
f143cb9
clean up logs for multiple executions, for standalone mode
salaboy May 21, 2025
a048fd1
Merge branch 'master' into adding-wf-examples-to-sb
salaboy May 21, 2025
4c861ba
Merge branch 'master' into adding-wf-examples-to-sb
artur-ciocanu May 21, 2025
d0d0546
Update application.properties
artur-ciocanu May 21, 2025
d0fca45
Merge branch 'master' into adding-wf-examples-to-sb
artur-ciocanu May 21, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -216,4 +216,10 @@ jobs:
run: |
mm.py README.md
env:
DOCKER_HOST: ${{steps.setup_docker.outputs.sock}}
DOCKER_HOST: ${{steps.setup_docker.outputs.sock}}
- name: Validate Spring Boot Workflow examples
working-directory: ./spring-boot-examples/workflows
run: |
mm.py README.md
env:
DOCKER_HOST: ${{steps.setup_docker.outputs.sock}}
1 change: 1 addition & 0 deletions spring-boot-examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
<modules>
<module>producer-app</module>
<module>consumer-app</module>
<module>workflows</module>
</modules>

<dependencyManagement>
Expand Down
Loading
Loading