Skip to content
This repository was archived by the owner on Apr 5, 2025. It is now read-only.

Commit bf6388d

Browse files
author
Alexander Melnyk
committed
chore: migrate old project to new repo
1 parent 09b17c4 commit bf6388d

27 files changed

+8325
-9
lines changed

.eslintrc.json

Lines changed: 231 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.gitattributes

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/pull_request_template.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fixes #

.github/workflows/auto-approve.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen".
2+
3+
name: auto-approve
4+
on:
5+
pull_request_target:
6+
types:
7+
- labeled
8+
- opened
9+
- synchronize
10+
- reopened
11+
- ready_for_review
12+
jobs:
13+
approve:
14+
runs-on: ubuntu-latest
15+
permissions:
16+
pull-requests: write
17+
if: contains(github.event.pull_request.labels.*.name, 'auto-approve') &&
18+
(github.event.pull_request.user.login == 'am29d')
19+
steps:
20+
- uses: hmarr/[email protected]
21+
with:
22+
github-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)