Skip to content

Commit

Permalink
team updates
Browse files Browse the repository at this point in the history
  • Loading branch information
joshspicer committed Oct 20, 2020
1 parent fb16a6f commit a22535a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@
"azureFunctions.projectLanguage": "Python",
"azureFunctions.projectRuntime": "~2",
"debug.internalConsoleOptions": "neverOpen",
"azureFunctions.templateFilter": "All"
"azureFunctions.templateFilter": "All",
"python.pythonPath": "/usr/local/bin/python3"
}
13 changes: 6 additions & 7 deletions DoFeedbackTriage/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,11 @@ def feedback_triage():

feedback_url = os.environ.get("FEEDBACK_URL")

names = ['Bret',
'Stephen',
names = ['Michael',
'Josh',
'Jérémie',
'Dominique',
'Michael']
'Stephen',
'Bret',
'Dominique']

length = len(names)
d = date.today()
Expand All @@ -51,7 +50,7 @@ def feedback_triage():
"activityTitle": "#**Feedback Triage Duty**",
"facts": [{{
"name": "On Duty",
"value": "{0}"
"value": "**{0}**"
}},
{{
"name": "Next",
Expand All @@ -73,4 +72,4 @@ def feedback_triage():
'''.format(assigned, onDeck, following, feedback_url)

teams_hook = os.environ.get('TEAMS_HOOK')
r = requests.post(teams_hook, data=content)
r = requests.post(teams_hook, data=content)

0 comments on commit a22535a

Please sign in to comment.