Skip to content

Commit 5b10694

Browse files
Introduce PR quality checks (#1505)
1 parent f6f19dd commit 5b10694

File tree

2 files changed

+19
-3
lines changed

2 files changed

+19
-3
lines changed

.github/pull_request_template.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
### 🎯 Goal
1+
### Goal
22

33
_Describe why we are making this change_
44

5-
### 🛠 Implementation details
5+
### Implementation
66

77
_Describe the implementation_
88

@@ -35,7 +35,7 @@ _Add relevant videos_
3535
</tbody>
3636
</table>
3737

38-
### 🧪 Testing
38+
### Testing
3939

4040
_Explain how this change can be tested (or why it can't be tested)_
4141

.github/workflows/pr-quality.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# .github/workflows/pr-quality-check.yml (caller)
2+
name: PR checklist
3+
4+
on:
5+
pull_request:
6+
types: [opened, edited, synchronize, labeled, unlabeled, reopened]
7+
8+
permissions:
9+
contents: read
10+
pull-requests: write
11+
issues: write
12+
13+
jobs:
14+
pr-checklist:
15+
uses: GetStream/android-ci-actions/.github/workflows/pr-quality.yml@main
16+
secrets: inherit

0 commit comments

Comments
 (0)