Skip to content

Commit

Permalink
update new_org_rejected status message
Browse files Browse the repository at this point in the history
  • Loading branch information
mwestphall committed Jun 7, 2024
1 parent 8b67266 commit 9458e9b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/webapp/webhook_status_messages.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
"Thank you for your pull request.\n"
"\n"
"Your [requested changes]({base_sha}...{head_sha}) add a new organization"
" to a project file; this requires manual review from OSG Staff.\n"
" or project ID to a project file; this requires manual review from OSG Staff.\n"
"\n"
"-- OSG-BOT :oncoming_police_car:\n"
"\n"
Expand Down
2 changes: 1 addition & 1 deletion src/webhook_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ def pull_request_hook():
action = 'REQUEST_CHANGES' if ret in rejectable_errors else 'COMMENT'
publish_pr_review(pull_num, body, action, head_sha)

return Response(f'Thank You: {osg_bot_msg}')
return Response(f'Thank You')


def runcmd(cmd, input=None, **kw):
Expand Down

0 comments on commit 9458e9b

Please sign in to comment.