Skip to content

Commit

Permalink
Fix the template path (#117)
Browse files Browse the repository at this point in the history
  • Loading branch information
christophfroehlich authored Aug 19, 2024
1 parent ddb4bac commit 8afaaaa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/reusable-ros-tooling-source-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
- name: Download issue template for target failure # Has to be a local file
if: ${{ always() && steps.action-ros.outcome == 'failure' && github.event_name == 'schedule' }}
run:
wget https://raw.githubusercontent.com/ros-controls/ros2_control_ci/master/.github/issue_template_failed_ci.md -O .github/issue_template_failed_ci.md
wget https://raw.githubusercontent.com/ros-controls/ros2_control_ci/master/.github/issue_template_failed_ci.md -O ${{ env.path }}/.github/issue_template_failed_ci.md
- uses: JasonEtco/create-an-issue@v2
# action-ros-ci does not report more details on test failures afaik
if: ${{ always() && steps.action-ros.outcome == 'failure' && github.event_name == 'schedule'}}
Expand All @@ -103,7 +103,7 @@ jobs:
URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
with:
update_existing: true
filename: .github/issue_template_failed_ci.md
filename: ${{ env.path }}/.github/issue_template_failed_ci.md
- uses: actions/upload-artifact@v4.3.6
with:
name: colcon-logs-${{ inputs.os_name }}-${{ inputs.ros_distro }}
Expand Down

0 comments on commit 8afaaaa

Please sign in to comment.