-
Notifications
You must be signed in to change notification settings - Fork 6
chore: BOMS-39 rename arbi-bom to orbi-bom #357
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -69,3 +69,16 @@ jobs: | |||||
| to: orbi-bom-upgrade-prs@2u-internal.jsmalerts.atlassian.net | ||||||
| from: github-actions <github-actions@edx.org> | ||||||
| body: Upgrade python requirements workflow in ${{github.repository}} failed! For details see "github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" | ||||||
|
|
||||||
| - name: Send success notification | ||||||
| if: ${{ success() }} | ||||||
| uses: dawidd6/action-send-mail@v3 | ||||||
| with: | ||||||
| server_address: email-smtp.us-east-1.amazonaws.com | ||||||
| server_port: 465 | ||||||
| username: ${{secrets.edx_smtp_username}} | ||||||
| password: ${{secrets.edx_smtp_password}} | ||||||
| subject: Upgrade python requirements workflow executed successfully in ${{github.repository}} | ||||||
| to: 'orbi-bom-upgrade-prs@2u-internal.jsmalerts.atlassian.net' | ||||||
| from: github-actions <github-actions@edx.org> | ||||||
| body: Upgrade python requirements workflow executed in ${{ github.repository }}. For details see "github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I know this was probably copy/pasted from elsewhere, but thought we could make the status more clear in the body as well.
Suggested change
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @robrap suggestion implemented. |
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we use consistent CAPS with the failure code?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note: The other PR has all caps for some secrets, but not these, and maybe they should all move to ALL-CAPS?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@robrap suggestion implemented.