forked from openedx-unsupported/devstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request openedx-unsupported#809 from edx/sarina/add-bot-wo…
…rkflow build: add edx-community-bot workflow
- Loading branch information
Showing
1 changed file
with
67 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
# For non-draft changes to Named Release branches: | ||
# - Check if the user belongs to a maintainers team. | ||
# - If so, approve the pull request. | ||
# - Tag community-engineering (for now) and the maintainers team. | ||
# - Merge the PR when the author comments `@edx-community-bot merge`. | ||
# Required organization secrets | ||
# - CC_GITHUB_TOKEN=... | ||
# - CC_TEAM_CHAMPIONS=org/team-name | ||
# - CC_TEAM_CONTRIBUTORS_ORG=org | ||
# - CC_TEAM_CONTRIBUTORS_TEAM=team-name | ||
--- | ||
name: automerge BTR open-release PRs | ||
on: | ||
issue_comment: | ||
branches: | ||
- open-release/* | ||
types: | ||
- created | ||
- edited | ||
pull_request_target: | ||
branches: | ||
- open-release/* | ||
types: | ||
- opened | ||
- edited | ||
- ready_for_review | ||
jobs: | ||
automerge: | ||
if: ${{ (github.event.issue.pull_request && !github.event.issue.pull_request.draft) || (github.event.pull_request && !github.event.pull_request.draft) }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: lookup teams | ||
id: teams | ||
uses: tspascoal/get-user-teams-membership@v1 | ||
with: | ||
username: "${{ github.actor }}" | ||
organization: ${{ secrets.CC_TEAM_CONTRIBUTORS_ORG }} | ||
team: ${{ secrets.CC_TEAM_CONTRIBUTORS_TEAM }} | ||
GITHUB_TOKEN: "${{ secrets.CC_GITHUB_TOKEN || secrets.GITHUB_TOKEN }}" | ||
- name: approve PR | ||
if: ${{ steps.teams.outputs.isTeamMember == 'true' && (github.event.action == 'opened' || github.event.action == 'ready_for_review') }} | ||
uses: andrewmusgrave/[email protected] | ||
with: | ||
repo-token: ${{ secrets.CC_GITHUB_TOKEN || secrets.GITHUB_TOKEN }} | ||
event: APPROVE | ||
body: | | ||
:+1: | ||
When you're ready to merge, add a comment that says | ||
> @edx-community-bot merge | ||
and we'll handle the rest! | ||
CC: @${{ secrets.CC_TEAM_CHAMPIONS }} @${{ secrets.CC_TEAM_CONTRIBUTORS_ORG }}/${{ secrets.CC_TEAM_CONTRIBUTORS_TEAM }} | ||
- name: label PR as auto-mergeable | ||
if: ${{ steps.teams.outputs.isTeamMember == 'true' && contains(github.event.comment.body, '@edx-community-bot merge') }} | ||
uses: andymckay/labeler@978f846c4ca6299fd136f465b42c5e87aca28cac | ||
with: | ||
add-labels: 'automerge' | ||
repo-token: ${{ secrets.CC_GITHUB_TOKEN || secrets.GITHUB_TOKEN }} | ||
- name: automerge | ||
uses: "pascalgn/[email protected]" | ||
env: | ||
GITHUB_TOKEN: "${{ secrets.CC_GITHUB_TOKEN || secrets.GITHUB_TOKEN }}" | ||
MERGE_COMMIT_MESSAGE: | | ||
merge(#{pullRequest.number}): {pullRequest.title} | ||
{pullRequest.body} |