Skip to content

Commit

Permalink
chore: Fix make upgrade github action.
Browse files Browse the repository at this point in the history
  • Loading branch information
macdiesel committed Jul 11, 2023
1 parent f4e0fdb commit beda744
Showing 1 changed file with 18 additions and 12 deletions.
30 changes: 18 additions & 12 deletions .github/workflows/upgrade-python-requirements.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,21 @@ on:
required: true
default: 'master'
jobs:
call-upgrade-python-requirements-workflow:
with:
branch: ${{ github.event.inputs.branch }}
team_reviewers: "business-enterprise-team"
email_address: enterprise-integrations@edx.org
send_success_notification: false
secrets:
requirements_bot_github_token: ${{ secrets.REQUIREMENTS_BOT_GITHUB_TOKEN }}
requirements_bot_github_email: ${{ secrets.REQUIREMENTS_BOT_GITHUB_EMAIL }}
edx_smtp_username: ${{ secrets.EDX_SMTP_USERNAME }}
edx_smtp_password: ${{ secrets.EDX_SMTP_PASSWORD }}
uses: openedx/.github/.github/workflows/upgrade-python-requirements.yml@master
call-upgrade-python-requirements-workflow:
runs-on: ubuntu-latest
steps:
- name: install pip-tools
run: python -m pip install pip-tools
- name: upgrade python requirements
uses: openedx/.github/.github/workflows/upgrade-python-requirements.yml@master
with:
branch: ${{ github.event.inputs.branch }}
team_reviewers: "business-enterprise-team"
email_address: enterprise-integrations@edx.org
send_success_notification: false
secrets:
requirements_bot_github_token: ${{ secrets.REQUIREMENTS_BOT_GITHUB_TOKEN }}
requirements_bot_github_email: ${{ secrets.REQUIREMENTS_BOT_GITHUB_EMAIL }}
edx_smtp_username: ${{ secrets.EDX_SMTP_USERNAME }}
edx_smtp_password: ${{ secrets.EDX_SMTP_PASSWORD }}

0 comments on commit beda744

Please sign in to comment.