-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Report issue also on a source build failure (#81)
- Loading branch information
1 parent
3268633
commit ddb4bac
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -88,6 +88,22 @@ jobs: | |
https://raw.githubusercontent.com/ros2/ros2/${{ inputs.ros2_repo_branch }}/ros2.repos | ||
${{ steps.check_local_repos.outputs.repo_file }} | ||
colcon-mixin-repository: https://raw.githubusercontent.com/colcon/colcon-mixin-repository/master/index.yaml | ||
id: action-ros | ||
- 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 | ||
- 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'}} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
ACTION_NAME: ${{ inputs.ros_distro }}/source | ||
REF: ${{ inputs.ref }} | ||
URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} | ||
with: | ||
update_existing: true | ||
filename: .github/issue_template_failed_ci.md | ||
- uses: actions/[email protected] | ||
with: | ||
name: colcon-logs-${{ inputs.os_name }}-${{ inputs.ros_distro }} | ||
|