Skip to content

Commit

Permalink
fix complain
Browse files Browse the repository at this point in the history
  • Loading branch information
jhheider committed Dec 13, 2023
1 parent cfee7f3 commit 6e9c29e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
10 changes: 3 additions & 7 deletions .github/actions/complain/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ inputs:
pkg:
description: project to complain about
required: true
platform:
description: platform key
required: true
token:
description: github token
required: true
Expand All @@ -23,7 +20,7 @@ runs:
actions: 'find-issues'
token: ${{ inputs.token }}
issue-state: 'open'
title-includes: "❌ build issues: ${{ inputs.pkg }}"
title-includes: '❌ build issues: ${{ inputs.pkg }}'
labels: 'build-failure'

- name: Create Issue
Expand All @@ -33,8 +30,8 @@ runs:
with:
actions: 'create-issue'
token: ${{ inputs.token }}
title: "❌ build issues: ${{ inputs.pkg }}"
body: "Running log of build failure for ${{ inputs.pkg }}"
title: '❌ build issues: ${{ inputs.pkg }}'
body: 'Running log of build failure for ${{ inputs.pkg }}'
labels: 'build-failure'
assignees: 'jhheider'

Expand All @@ -47,6 +44,5 @@ runs:
body: |
# Build failure
## ${{ inputs.pkg }}
### ${{ inputs.platform }}
logs: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
3 changes: 1 addition & 2 deletions .github/workflows/new-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,4 @@ jobs:
- uses: actions/checkout@v4
- uses: ./.github/actions/complain
with:
pkg: ${{ inputs.pkg }}
platform: ${{ inputs.name }}
pkg: ${{ inputs.projects }}

0 comments on commit 6e9c29e

Please sign in to comment.