Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
SKairinos committed Jan 5, 2024
1 parent 1b0ff95 commit 877869e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
7 changes: 3 additions & 4 deletions .github/actions/python/setup-environment/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,8 @@ runs:
using: composite
steps:
- name: 🛫 Checkout
if: ${{ inputs.checkout == 'true' }}
uses: actions/checkout@v4
with:
ref: refs/pull/53/head

- name: 🐍 Set up Python ${{ inputs.python-version }}
uses: actions/setup-python@v4
Expand All @@ -39,5 +38,5 @@ runs:

- name: 🛠 Install Dependencies
shell: bash
working-directory: .github/scripts/python
run: python -m pipenv install ${{ inputs.install-args }}
working-directory: ${{ inputs.working-directory }}
run: pipenv install ${{ inputs.install-args }}
8 changes: 4 additions & 4 deletions .github/workflows/validate-new-contributor.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ jobs:
# echo "PR_NUM=${{ inputs.pull-request-number }}" >> $GITHUB_ENV
# fi

# - name: 🛫 Checkout
# uses: actions/checkout@v4
# with:
# ref: refs/pull/${{ inputs.pull-request-number }}/head
- name: 🛫 Checkout
uses: actions/checkout@v4
with:
ref: refs/pull/${{ inputs.pull-request-number }}/head

# - name: 🛫 Checkout
# run: gh pr checkout ${{ inputs.pull-request-number }}
Expand Down

0 comments on commit 877869e

Please sign in to comment.