Update main.yml

This commit is contained in:
Paul Kaplan 2021-06-09 11:26:03 -04:00 committed by GitHub
parent 8df9213ad1
commit 7469ce488d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -30,7 +30,6 @@ jobs:
git config --global user.name "${{ github.actor }}" git config --global user.name "${{ github.actor }}"
git checkout -b ${{ steps.vars.outputs.branch }} git checkout -b ${{ steps.vars.outputs.branch }}
git merge origin/develop git merge origin/develop
git push --set-upstream origin ${{ steps.vars.outputs.branch }}
- name: Show merge commit - name: Show merge commit
run: git --no-pager show run: git --no-pager show
- name: Create Pull Request - name: Create Pull Request
@ -40,3 +39,7 @@ jobs:
base: develop base: develop
branch: ${{ steps.vars.outputs.branch }} branch: ${{ steps.vars.outputs.branch }}
title: develop ${{ steps.vars.outputs.branch }} title: develop ${{ steps.vars.outputs.branch }}
- name: Check outputs
run: |
echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}"
echo "Pull Request URL - ${{ steps.cpr.outputs.pull-request-url }}"