Skip to content

Commit 6be1faa

Browse files
committed
feat: add code owner
1 parent 16753ea commit 6be1faa

File tree

3 files changed

+25
-0
lines changed

3 files changed

+25
-0
lines changed

.github/CODEOWNERS

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Note: order is important; the last matching pattern takes the most precedence
2+
3+
# Global rule
4+
* @BedrockStreaming/monitoring-qa

.github/PULL_REQUEST_TEMPLATE.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
## Why?
2+
<!-- Explain why you've opened this PR -->
3+
4+
5+
## TODO
6+
- [ ] code is tested
7+
- [ ] documentation is updated (if needed)

.github/workflows/ci.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Continuous Integration
2+
on: [push]
3+
4+
jobs:
5+
linter:
6+
name: Code style
7+
runs-on: ubuntu-20.04
8+
steps:
9+
- uses: actions/checkout@master
10+
- uses: shivammathur/setup-php@v2
11+
with:
12+
php-version: 7.4
13+
- run: composer install --prefer-dist --no-interaction
14+
- run: vendor/bin/php-cs-fixer fix --ansi --dry-run --using-cache=no --verbose

0 commit comments

Comments
 (0)