Skip to content

Commit eaed037

Browse files
author
Bryan Sieber
committed
Minor service update
1 parent e6e0551 commit eaed037

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

.github/workflows/test-build.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,11 @@ jobs:
2222
- name: Run tests
2323
run: |-
2424
docker run --rm \
25+
-e JIRA_USERNAME \
26+
-e JIRA_PASSWORD \
27+
-e BUGZILLA_API_KEY \
2528
ghcr.io/${{ github.repository }}:${{ github.sha }}
29+
env:
30+
JIRA_USERNAME: "fake_username"
31+
JIRA_PASSWORD: "fake_password"
32+
BUGZILLA_API_KEY: "fake_api_key"

src/jbi/whiteboard_actions/default.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@
33

44

55
def default_action(data, context):
6-
print(data)
7-
svc = services.get_service("service")
8-
print(svc)
6+
print(services.bugzilla)
7+
print(services.jira)
98

109

1110
def default_helper():

0 commit comments

Comments
 (0)