Skip to content

Commit

Permalink
Fix incorrect repository for targeting composite action (#23)
Browse files Browse the repository at this point in the history
This leaked in from my testing repository by mistake. Unfortunately,
there isn't a solid way to target the action.yaml of the current PR
other than specifically checking out the repo, which is how this change
fixes the target.
  • Loading branch information
cottsay authored Mar 2, 2024
1 parent 696193d commit 06bb7b5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- uses: cottsay/colcon-ci@main
- uses: actions/checkout@v4
with:
repository: ${{ inputs.setup-repository }}
path: ./.github-ci-action-repo
- uses: ./.github-ci-action-repo
- uses: codecov/codecov-action@v3
if: ${{ inputs.codecov }}

0 comments on commit 06bb7b5

Please sign in to comment.