Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
22 changes: 22 additions & 0 deletions .github/workflows/issue-write-test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Test Issue Write Workflow

on:
pull_request:
paths:
- '.github/workflows/issue-write-test.yaml'

jobs:
test-issue-write:
name: "Test Issue Write"
runs-on: ubuntu-24.04
if: github.repository == 'llvm/llvm-project'
steps:
- name: Write Comment
run: |
echo '[{"body": "This is a comment for testing the issue write workflow"}]' > comments
- name: Upload Comment
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
name: workflow-args
path: |
comments
1 change: 1 addition & 0 deletions .github/workflows/issue-write.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
- "PR Request Release Note"
- "Code lint"
- "CI Checks"
- "Test Issue Write"
types:
- completed

Expand Down
Loading