Skip to content

Commit d674b50

Browse files
[𝘀𝗽𝗿] initial version
Created using spr 1.3.7
1 parent 3ca85e7 commit d674b50

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Test Issue Write Workflow
2+
3+
on:
4+
pull_request:
5+
paths:
6+
- '.github/workflows/issue-write-test.yaml'
7+
8+
jobs:
9+
test-issue-write:
10+
name: "Test Issue Write"
11+
runs-on: ubuntu-24.04
12+
if: github.repository == 'llvm/llvm-project'
13+
steps:
14+
- name: Write Comment
15+
run: |
16+
echo '[{"body": "This is a comment for testing the issue write workflow"}]' > comments
17+
- name: Upload Comment
18+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
19+
with:
20+
name: workflow-args
21+
path: |
22+
comments

.github/workflows/issue-write.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
- "PR Request Release Note"
99
- "Code lint"
1010
- "CI Checks"
11+
- "Test Issue Write"
1112
types:
1213
- completed
1314

0 commit comments

Comments
 (0)