Skip to content

Commit

Permalink
Add a separate job for a PR
Browse files Browse the repository at this point in the history
  • Loading branch information
akirak committed Nov 2, 2023
1 parent bfda5f1 commit 4b3d7f7
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion .github/workflows/merge-upstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,24 @@ jobs:
run: |
git rebase -s ort -X ours ${{ steps.start.outputs.rev }}
- run: git push origin HEAD
- run: git push --force-with-lease origin HEAD

pr:
runs-on: ubuntu-latest

needs:
- push

steps:
- uses: actions/checkout@v3
with:
ref: upstream-recipes

- name: Create a pull request
uses: peter-evans/create-pull-request@v5
with:
base: akirak
branch: create-pull-request/recipes
token: ${{ secrets.PAT_FOR_PR }}
title: 'Merge the upstream recipe commits'
labels: automation

0 comments on commit 4b3d7f7

Please sign in to comment.