Skip to content

Commit

Permalink
feat: add release testing label to test failure reports
Browse files Browse the repository at this point in the history
  • Loading branch information
mariajgrimaldi committed May 17, 2024
1 parent 5572c27 commit 9d28a5f
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/add-label-on-failure-report.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@

name: Allows for the adding labels when opening a test failure issue.
name: Allows for adding labels when opening a test failure issue.

on:
issues:
Expand All @@ -8,9 +7,11 @@ on:
jobs:
add_label:
runs-on: ubuntu-latest
if: ${{ contains(github.event.issue.title, 'Test failure') && !contains(github.event.issue.labels.*.name, 'needs triage') }}
if: ${{ contains(github.event.issue.title, 'Test failure') && !contains(github.event.issue.labels.*.name, 'needs triage') && !contains(github.event.issue.labels.*.name, 'release testing') }}
steps:
- name: apply needs triage label
- name: Apply release testing labels
uses: actions-ecosystem/action-add-labels@v1
with:
labels: needs triage
labels: |
needs triage
release testing

0 comments on commit 9d28a5f

Please sign in to comment.