Skip to content

Commit c7c185e

Browse files
Merge pull request #12 from usingtechnology/pr-pipeline-test
update services code
2 parents d62dc42 + 4e8903e commit c7c185e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/on_pr_opened.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
id: builder
2222
with:
2323
context: './services/holder'
24-
image_name: ${{ github.repository_owner}}/holder_image
24+
image_name: ${{ github.repository_owner}}/traction-holder
2525
registry: ghcr.io
2626
registry_username: ${{ github.actor}}
2727
registry_password: ${{ secrets.GITHUB_TOKEN }}
@@ -40,7 +40,7 @@ jobs:
4040
id: builder
4141
with:
4242
context: './services/verifier'
43-
image_name: ${{ github.repository_owner}}/verifier_image
43+
image_name: ${{ github.repository_owner}}/traction-verifier
4444
registry: ghcr.io
4545
registry_username: ${{ github.actor}}
4646
registry_password: ${{ secrets.GITHUB_TOKEN }}

services/holder/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
@app.route("/")
1717
def hello_world():
18-
return "<p>Hello, World!</p>"
18+
return "<p>Hello, World</p>"
1919

2020
@app.route("/log/topic/<topic>/", methods=['POST'])
2121
def acapy_event_handler(topic):

services/verifier/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
@app.route("/")
1818
def hello_world():
19-
return "<p>Hello, World!</p>"
19+
return "<p>Hello, World</p>"
2020

2121
@app.route("/log/topic/<topic>/", methods=['POST'])
2222
def acapy_event_handler(topic):

0 commit comments

Comments
 (0)