Skip to content

Commit b211648

Browse files
authored
CI Fixes for Other Issues with mkdocs (#102)
1 parent 9a761d9 commit b211648

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/e2e.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
jobs:
66
checkPermissions:
77
runs-on: ubuntu-latest
8+
if: github.event.issue.pull_request && contains(github.event.comment.body, '/do-e2e-test') # check the comment if it contains the keywords
89
steps:
910
- id: checkUserPermissions
1011
uses: actions-cool/check-user-permission@main
@@ -14,9 +15,9 @@ jobs:
1415
run_test: ${{ steps.checkUserPermissions.outputs.require-result }}
1516
e2ePipeline:
1617
runs-on: ubuntu-latest
18+
if: github.event.issue.pull_request && contains(github.event.comment.body, '/do-e2e-test') && needs.checkPermissions.outputs.run_test == 'true'
1719
needs:
1820
- checkPermissions
19-
if: needs.checkPermissions.outputs.run_test == 'true'
2021
steps:
2122
- name: Dump GitHub context
2223
env:
@@ -40,7 +41,6 @@ jobs:
4041
aws-region: us-west-2
4142
- name: Run CodeBuild
4243
uses: aws-actions/aws-codebuild-run-build@v1
43-
if: github.event.issue.pull_request && contains(github.event.comment.body, '/do-e2e-test') # check the comment if it contains the keywords
4444
with:
4545
project-name: cdk-pattern-test
4646
# buildspec-override: path/to/buildspec.yaml or inline buildspec definition

mkdocs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ nav:
3232
- New Cluster:
3333
- AWS Native : patterns/single-new-eks-observability-accelerators/single-new-eks-awsnative-observability.md
3434
- OSS : patterns/single-new-eks-observability-accelerators/single-new-eks-opensource-observability.md
35+
- OSS Java Mon : patterns/single-new-eks-observability-accelerators/single-new-eks-java-opensource-observability.md
3536
- Mixed : patterns/single-new-eks-observability-accelerators/single-new-eks-mixed-observability.md
3637
- Graviton OSS : patterns/single-new-eks-observability-accelerators/single-new-eks-graviton-opensource-observability.md
3738
- Tracing: tracing.md

0 commit comments

Comments
 (0)