Skip to content

Commit f3cc27f

Browse files
committed
Minimal
1 parent b122058 commit f3cc27f

4 files changed

Lines changed: 40 additions & 0 deletions

File tree

.github/workflows/.mergify.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
pull_request_rules:
2+
- name: Auto-merge when approved and checks pass
3+
conditions:
4+
- "#approved-reviews-by>=1"
5+
- check-success=Prettier Check
6+
- check-success!=*
7+
actions:
8+
merge:
9+
method: squash

.github/workflows/dependabot.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "npm"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
open-pull-requests-limit: 5
8+
commit-message:
9+
prefix: "chore(deps)"

.github/workflows/prettier.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Prettier Check
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches: [main, master]
7+
8+
jobs:
9+
prettier:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- uses: actions/setup-node@v4
14+
with:
15+
node-version: 18
16+
- run: npm ci
17+
- run: npm run format:check

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,8 @@ See [`docs/architecture.md`](docs/architecture.md) for details.
5050
```bash
5151
git clone https://github.com/Coderxrohan/control-pulse.git
5252
cd control-pulse
53+
```
54+
## Contributors
55+
56+
<!-- ALL-CONTRIBUTORS-LIST:START -->
57+
<!-- ALL-CONTRIBUTORS-LIST:END -->

0 commit comments

Comments
 (0)