Skip to content

Commit

Permalink
next
Browse files Browse the repository at this point in the history
  • Loading branch information
jaci-nordic committed Sep 19, 2023
1 parent c4b38f1 commit 102f9c8
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions .github/workflows/pip-requirements.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,22 @@ jobs:
runs-on: ubuntu-20.04

steps:
- name: Determine PR Origin
id: pr-origin
run: |
echo "PR owner: ${{ github.event.pull_request.head.repo.owner.login }}"
echo "PR repo name: ${{ github.event.pull_request.head.repo.name }}"
echo "::set-output name=pr_owner::${{ github.event.pull_request.head.repo.owner.login }}"
echo "::set-output name=pr_repo_name::${{ github.event.pull_request.head.repo.name }}"
- name: Checkout
uses: actions/checkout@v3
with:
ref: refs/pull/${{ github.event.pull_request.number }}/head
repository: ${{ steps.pr-origin.outputs.pr_owner }}/${{ steps.pr-origin.outputs.pr_repo_name }}
path: ncs/nrf
fetch-depth: 0

- name: Checkout
uses: actions/checkout@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion scripts/requirements-extra.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pygit2<=1.10
editdistance>=0.5.0
PyGithub==1.59.1
PyGithub==1.59.0
zcbor>=0.5.1

0 comments on commit 102f9c8

Please sign in to comment.