File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -23,10 +23,10 @@ jobs:
23
23
run : |-
24
24
docker run --rm \
25
25
-e JIRA_USERNAME \
26
- -e JIRA_PASSWORD \
26
+ -e JIRA_API_KEY \
27
27
-e BUGZILLA_API_KEY \
28
28
ghcr.io/${{ github.repository }}:${{ github.sha }}
29
29
env :
30
30
JIRA_USERNAME : " fake_username"
31
- JIRA_PASSWORD : " fake_password "
31
+ JIRA_API_KEY : " fake_api_key "
32
32
BUGZILLA_API_KEY : " fake_api_key"
Original file line number Diff line number Diff line change 2
2
3
3
# Jira API Secrets
4
4
JIRA_USERNAME = " fake_jira_username"
5
- JIRA_PASSWORD = " fake_jira_password "
5
+ JIRA_API_KEY = " fake_jira_api_key "
6
6
7
7
# Bugzilla API Secrets
8
8
BUGZILLA_API_KEY = " fake_bugzilla_api_key"
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ class Settings(BaseSettings):
25
25
jira_base_url : str = "https://mozit-test.atlassian.net/"
26
26
jira_issue_url : str = f"{ jira_base_url } browse/%s"
27
27
jira_username : str
28
- jira_password : str
28
+ jira_api_key : str
29
29
30
30
# Bugzilla
31
31
bugzilla_base_url : str = "https://bugzilla-dev.allizom.org"
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ def get_jira():
16
16
return Jira (
17
17
url = settings .jira_base_url ,
18
18
username = settings .jira_username ,
19
- password = settings .jira_password ,
19
+ password = settings .jira_api_key , # package calls this param 'password' but actually expects an api key
20
20
)
21
21
22
22
You can’t perform that action at this time.
0 commit comments