- testing create-pull-request@v1.3.1-multi

This commit is contained in:
makikvues 2021-07-15 08:10:47 +02:00
parent 100064a8c9
commit 57ee4ba9cd

View File

@ -44,13 +44,17 @@ jobs:
run: msbuild $env:Solution_Path run: msbuild $env:Solution_Path
# Execute all unit tests in the solution # Execute all unit tests in the solution
- name: Execute unit tests #- name: Execute unit tests
run: dotnet test $env:Solution_Path # run: dotnet test $env:Solution_Path
# PR # PR
- uses: actions/checkout@v2 - name: Pull Request
- name: pull-request # uses: repo-sync/pull-request@v2
uses: repo-sync/pull-request@v2 uses: peter-evans/create-pull-request@v1.3.1-multi
env:
GITHUB_TOKEN: ${{ secrets.PULL_REQUEST_TOKEN }}
with: with:
destination_branch: "master" #destination_branch: "master"
github_token: ${{ secrets.PULL_REQUEST_TOKEN }} #github_token: ${{ secrets.PULL_REQUEST_TOKEN }}
branch: "master"
token: ${{ secrets.PULL_REQUEST_TOKEN }}