File tree Expand file tree Collapse file tree 4 files changed +13
-5
lines changed Expand file tree Collapse file tree 4 files changed +13
-5
lines changed Original file line number Diff line number Diff line change 11name : ' Create PR'
22description : ' create PR with configuration'
3+ inputs :
4+ REVIEWERS :
5+ description : " Add reviewers to PR"
6+ required : true
37runs :
48 using : ' docker'
59 image : ' Dockerfile'
Original file line number Diff line number Diff line change 11#! /bin/sh
22
33# Create Pull Request (by default on current branch)
4- gh pr create --title " Release ${VERSION} " --body " This is an autogenerated PR to prepare for the release"
4+ gh pr create \
5+ --title " Release ${VERSION} " \
6+ --body " This is an autogenerated PR to prepare for the release" \
7+ --reviewer " ${INPUT_REVIEWERS} "
Original file line number Diff line number Diff line change 2727 - name : Create all-in-one installation script
2828 uses : ./.github/actions/gen-install-scripts
2929 with :
30- IMAGE_URL : ${{ secrets.DOCKER_REGISTRY }}/${{ secrets.DOCKER_RELEASE_REPO }}:${{ env.VERSION }}
31- version : ${{ env.VERSION }}
30+ IMAGE_URL : ${{ secrets.DOCKER_RELEASE_REPO }}:${{ env.VERSION }}
3231
3332 - name : Create branch and push it
3433 run : |
4544 - name : Create PR
4645 uses : ./.github/actions/create-pr
4746 env :
48- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
47+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
48+ with :
49+ REVIEWERS : antonlisovenko,vasilevp,leo-ri
Original file line number Diff line number Diff line change 5757 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
5858 with :
5959 tag_name : ${{ steps.tag.outputs.tag }}
60- release_name : Release ${{ steps.tag.outputs.version }}
60+ release_name : ${{ steps.tag.outputs.tag }}
6161 body_path : changelog.md
6262 draft : true
6363 prerelease : false
You can’t perform that action at this time.
0 commit comments