Skip to content
This repository has been archived by the owner on Oct 5, 2023. It is now read-only.

Commit

Permalink
chore: Tag Aximprovements team on weekly maintenance PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
thezaeemaanwar committed Aug 23, 2023
1 parent 1b6cc73 commit 2389aaf
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/upgrade-python-requirements.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,24 @@ jobs:
requirements_bot_github_email: ${{ secrets.REQUIREMENTS_BOT_GITHUB_EMAIL }}
edx_smtp_username: ${{ secrets.EDX_SMTP_USERNAME }}
edx_smtp_password: ${{ secrets.EDX_SMTP_PASSWORD }}

tag-axim-team-for-review:
name: Tag Axim Team for review
runs-on: ubuntu-latest
steps:
- name: Mention aximprovements team
uses: actions/github-script@v4
with:
script: |
const teamName = "openedx/axim-aximprovements";
const prNumber = context.payload.pull_request.number;
const comment = `@${teamName} New pull request (#${prNumber})for review
github.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: prNumber,
body: comment
});
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 2389aaf

Please sign in to comment.