Fixing a path issue #65
Workflow file for this run
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
# Runs a script to perform automated triage on the latest timer-initiated Temurin build pipelines. | |
name: "Build Autotriage" | |
on: | |
push | |
jobs: | |
Label: | |
runs-on: ubuntu-latest | |
name: Run Build Triage | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run Build Auto Triage | |
run: bash ${PWD}/tooling/build_autotriage/build_autotriage.sh jdk21u | |
- name: Create Issue From File | |
uses: peter-evans/create-issue-from-file@v4 | |
with: | |
title: Build triage for week starting Saturday - Test - | |
content-filepath: ${PWD}/build_triage_output.md | |
labels: weekly-build-triage |