Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into main-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
ala-n committed Feb 26, 2024
2 parents 1a6fa0a + dd315cd commit 88ed40c
Show file tree
Hide file tree
Showing 9 changed files with 188 additions and 104 deletions.
64 changes: 59 additions & 5 deletions .commitlintrc.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,62 @@
extends:
- "@commitlint/config-conventional"
rules:
header-max-length: [1, 'always', 120]
body-max-length: [1, 'always', 150]
body-max-line-length: [1, 'always', 150]
footer-max-line-length: [1, 'always', 120]
subject-case: [1, 'never', ['sentence-case', 'start-case', 'pascal-case', 'upper-case']]
header-max-length:
- 1
- always
- 120
body-max-length:
- 1
- always
- 150
body-max-line-length:
- 1
- always
- 150
footer-max-line-length:
- 1
- always
- 120
subject-case:
- 1
- never
-
- sentence-case
- start-case
- pascal-case
- upper-case
scope-enum:
- 2
- always
-
- esl-a11y-group
- esl-alert
- esl-animate
- esl-base-element
- esl-carousel
- esl-event-listener
- esl-footnotes
- esl-forms
- esl-image
- esl-media
- esl-media-query
- esl-mixin-element
- esl-open-state
- esl-panel
- esl-panel-group
- esl-popup
- esl-random-text
- esl-related-target
- esl-scrollbar
- esl-share
- esl-tab
- esl-toggleable
- esl-tooltip
- esl-traversing-query
- esl-trigger
- esl-utils
- site
- deps
- deps-dev
- lint
- e2e
20 changes: 20 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ updates:
assignees:
- "ala-n"
- "abarmina"
- "NastaLeo"
groups:
typescript-eslint:
patterns:
Expand All @@ -33,3 +34,22 @@ updates:
patterns:
- "semantic-release"
- "@semantic-release/*"

# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
open-pull-requests-limit: 5
schedule:
interval: "weekly"
reviewers:
- "@exadel-inc/esl-core-maintainers"
assignees:
- "ala-n"
- "abarmina"
- "NastaLeo"
groups:
gh-pages:
patterns:
- "actions/configure-pages"
- "actions/upload-pages-artifact"
- "actions/deploy-pages"
2 changes: 1 addition & 1 deletion .github/workflows/cla.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- name: cla-assistant-check
uses: cla-assistant/[email protected].0
uses: cla-assistant/[email protected].1
if: startsWith(github.event.comment.body, 'recheckcla') || contains(github.event.comment.body, 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ permissions:
contents: read
pages: write
id-token: write
actions: read

# Allows only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
Expand Down Expand Up @@ -62,4 +63,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v3
uses: actions/deploy-pages@v4
18 changes: 13 additions & 5 deletions docs/COMMIT_CONVENTION.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,18 +97,25 @@ BREAKING CHANGES:

### \<scope\>

Scope is an optional but "nice to have" part of your commit message.
Scope is highly recommended part of your commit message.

Use a scope to clarify changes area (module, component, feature or epic).
Using a scope enhances clarity and organization in commit messages, allowing for better categorization of changes.

Scope should be placed in parentheses after type but before `:`.
Utilize a scope to clarify the area of changes (module, component, feature, or epic).

The scope should be compatibly short and in lowercase.
The scope should be enclosed in parentheses after the type but before `:`.

The scope should be in lowercase.

```text
fix(esl-component): IE compatibility
fix(esl-utils): fix IE compatibility for scroll type detection
```

**Valid Scope Values**

To ensure consistency and clarity in commit messages, refer to
the [list of permissible scope values](https://github.com/exadel-inc/esl/blob/58095ed129ae6fcc0e1a2e32f099af36c090a176/.commitlintrc.yml).

---

### \<subject\>
Expand Down Expand Up @@ -163,3 +170,4 @@ Update of css rules order.
Close PR #123.
```

2 changes: 1 addition & 1 deletion e2e/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"@types/puppeteer": "^7.0.4",
"jest-image-snapshot": "^6.4.0",
"jest-puppeteer": "^10.0.1",
"puppeteer": "^22.1.0",
"puppeteer": "^22.2.0",
"stucumber": "^0.19.0"
}
}
Loading

0 comments on commit 88ed40c

Please sign in to comment.