@etchteam/eslint-config 2.0.2 → 2.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/mergify.yml +19 -15
- package/CHANGELOG.md +2 -4
- package/package.json +1 -1
package/.github/mergify.yml
CHANGED
|
@@ -1,15 +1,9 @@
|
|
|
1
1
|
---
|
|
2
2
|
pull_request_rules:
|
|
3
|
-
- name:
|
|
3
|
+
- name: Automatically approve and merge dependabot PRs
|
|
4
4
|
conditions:
|
|
5
5
|
- and:
|
|
6
|
-
- author
|
|
7
|
-
- check-success=SonarCloud Code Analysis
|
|
8
|
-
- check-success~=^security/snyk
|
|
9
|
-
- check-success=🧹 Lint (18)
|
|
10
|
-
- check-success=🧹 Lint (20)
|
|
11
|
-
- check-success=🧹 Lint (21)
|
|
12
|
-
- check-success=CodeQL
|
|
6
|
+
- author=dependabot[bot]
|
|
13
7
|
- label!=wontfix
|
|
14
8
|
actions:
|
|
15
9
|
review:
|
|
@@ -17,17 +11,27 @@ pull_request_rules:
|
|
|
17
11
|
message: Automatically approving dependabot
|
|
18
12
|
merge:
|
|
19
13
|
method: merge
|
|
20
|
-
- name:
|
|
14
|
+
- name: Automatically merge when the PR has been approved and there are no comments
|
|
21
15
|
conditions:
|
|
22
16
|
- and:
|
|
23
|
-
- check-success~=^security/snyk
|
|
24
|
-
- check-success=SonarCloud Code Analysis
|
|
25
|
-
- check-success=🧹 Lint (18)
|
|
26
|
-
- check-success=🧹 Lint (20)
|
|
27
|
-
- check-success=🧹 Lint (21)
|
|
28
|
-
- check-success=CodeQL
|
|
29
17
|
- "#approved-reviews-by>=1"
|
|
30
18
|
- "#changes-requested-reviews-by=0"
|
|
31
19
|
actions:
|
|
32
20
|
merge:
|
|
33
21
|
method: merge
|
|
22
|
+
- name: Ask for reviews
|
|
23
|
+
conditions:
|
|
24
|
+
- -closed
|
|
25
|
+
- -draft
|
|
26
|
+
actions:
|
|
27
|
+
request_reviews:
|
|
28
|
+
teams:
|
|
29
|
+
- devs
|
|
30
|
+
random_count: 2
|
|
31
|
+
- name: Automatically assign to author
|
|
32
|
+
conditions:
|
|
33
|
+
- author!=dependabot[bot]
|
|
34
|
+
actions:
|
|
35
|
+
assign:
|
|
36
|
+
users:
|
|
37
|
+
- "{{author}}"
|
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
|
-
## [2.0.
|
|
1
|
+
## [2.0.4](https://github.com/etchteam/eslint/compare/v2.0.3...v2.0.4) (2024-08-08)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Bug Fixes
|
|
5
5
|
|
|
6
|
-
* bump eslint-
|
|
7
|
-
* bump eslint-plugin-react from 7.34.3 to 7.35.0 ([f1aae7c](https://github.com/etchteam/eslint/commit/f1aae7c3c63cffc6e9d723f6c2b65ed3e4332ad8))
|
|
8
|
-
* bump prettier from 3.3.2 to 3.3.3 ([ab29992](https://github.com/etchteam/eslint/commit/ab29992b563607ccd1133b2c037f8ee5f55fc27e))
|
|
6
|
+
* bump eslint-plugin-json from 4.0.0 to 4.0.1 ([ede35e5](https://github.com/etchteam/eslint/commit/ede35e531104187e46be579aa5abbd57fa94541f))
|