Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/impl-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,10 +154,10 @@ jobs:
Read `prompts/workflow-prompts/ai-quality-review.md` and follow those instructions.

Variables for this run:
- LIBRARY: $LIBRARY
- SPEC_ID: $SPEC_ID
- PR_NUMBER: $PR_NUMBER
- ATTEMPT: $ATTEMPT
- LIBRARY: ${{ steps.pr.outputs.library }}
- SPEC_ID: ${{ steps.pr.outputs.specification_id }}
- PR_NUMBER: ${{ steps.pr.outputs.pr_number }}
- ATTEMPT: ${{ steps.attempts.outputs.display }}

- name: Extract quality score
id: score
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/report-validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,12 @@ jobs:
You are validating a user-submitted issue report for anyplot.

### Issue Details
- **Title:** $ISSUE_TITLE
- **Number:** #$ISSUE_NUMBER
- **Author:** $ISSUE_USER
- **Title:** ${{ github.event.issue.title }}
- **Number:** #${{ github.event.issue.number }}
- **Author:** ${{ github.event.issue.user.login }}
- **Body:**
```
$ISSUE_BODY
${{ github.event.issue.body }}
```

---
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/spec-create.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,12 +84,12 @@ jobs:
You are creating a new plot specification.

### Issue Details
- **Title:** $ISSUE_TITLE
- **Number:** #$ISSUE_NUMBER
- **Author:** $ISSUE_USER
- **Title:** ${{ github.event.issue.title }}
- **Number:** #${{ github.event.issue.number }}
- **Author:** ${{ github.event.issue.user.login }}
- **Body:**
```
$ISSUE_BODY
${{ github.event.issue.body }}
```

---
Expand Down Expand Up @@ -193,12 +193,12 @@ jobs:
You are creating a new plot specification.

### Issue Details
- **Title:** $ISSUE_TITLE
- **Number:** #$ISSUE_NUMBER
- **Author:** $ISSUE_USER
- **Title:** ${{ github.event.issue.title }}
- **Number:** #${{ github.event.issue.number }}
- **Author:** ${{ github.event.issue.user.login }}
- **Body:**
```
$ISSUE_BODY
${{ github.event.issue.body }}
```

---
Expand Down
Loading