Skip to content

Commit 4dbf1c8

Browse files
authored
Merge branch '5.x' into ux-feedback-guidelines
2 parents f010768 + 552e75b commit 4dbf1c8

32 files changed

+1095
-196
lines changed

.all-contributorsrc

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,33 @@
3232
"doc",
3333
"review"
3434
]
35+
},
36+
{
37+
"login": "ifeoluwafavour",
38+
"name": "Ife",
39+
"avatar_url": "https://avatars.githubusercontent.com/u/64481442?v=4",
40+
"profile": "http://ifeoluwafavour.hashnode.dev",
41+
"contributions": [
42+
"doc"
43+
]
44+
},
45+
{
46+
"login": "sumbria",
47+
"name": "Balbinder Sumbria",
48+
"avatar_url": "https://avatars.githubusercontent.com/u/6416992?v=4",
49+
"profile": "https://incodit.com",
50+
"contributions": [
51+
"doc"
52+
]
53+
},
54+
{
55+
"login": "Hugo-Prossaird",
56+
"name": "Hugo-Prossaird",
57+
"avatar_url": "https://avatars.githubusercontent.com/u/176997845?v=4",
58+
"profile": "https://github.com/Hugo-Prossaird",
59+
"contributions": [
60+
"doc"
61+
]
3562
}
3663
],
3764
"contributorsPerLine": 7,
@@ -40,5 +67,6 @@
4067
"repoType": "github",
4168
"repoHost": "https://github.com",
4269
"skipCi": true,
43-
"commitConvention": "angular"
70+
"commitConvention": "angular",
71+
"commitType": "docs"
4472
}

.github/holopin.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
organization: mautic
2+
holobytes:
3+
- evolvingStickerId: cm1ti4x4c57560cjq2styaitm
4+
icon: avocado
5+
alias: hacktoberfest-2024

.github/styles/Vocab/Mautic/accept.txt renamed to .github/styles/config/vocabularies/Mautic/accept.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,10 @@ CCPA
2222
Citrix
2323
Clearbit
2424
CloudAMQP
25+
Codeception
2526
Codecov
2627
Company(ies)
28+
Composability
2729
Composer
2830
Config
2931
config
@@ -47,6 +49,8 @@ Firewalls
4749
firewalls
4850
Focus Item
4951
Focus Items
52+
Form
53+
form
5054
Forms
5155
forms
5256
Froala
@@ -156,6 +160,7 @@ Vtiger
156160
Webhooks
157161
Webmecanik
158162
www
163+
XPath
159164
YAML
160165
Zapier
161166
Zoho

.github/workflows/dev_merge_pr.yml

Lines changed: 0 additions & 52 deletions
This file was deleted.

.github/workflows/dev_validate_pr.yml

Lines changed: 0 additions & 27 deletions
This file was deleted.

.github/workflows/linting.yml

Lines changed: 41 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -4,48 +4,49 @@ on:
44

55
jobs:
66
prose:
7-
runs-on: ubuntu-latest
7+
runs-on: ubuntu-22.04 # See https://github.com/errata-ai/vale-action/issues/128 before upgrading
8+
permissions:
9+
contents: read
10+
pull-requests: write
811
steps:
9-
- name: Checkout
10-
uses: actions/checkout@v4
11-
with:
12-
fetch-depth: 0
13-
14-
- uses: actions/setup-python@v4
15-
with:
16-
python-version: '3.x'
17-
cache: 'pip'
18-
19-
- name: Install Python dependencies
20-
run: pip3 install -r docs/requirements.txt
21-
22-
- name: Vale
23-
uses: errata-ai/vale-action@reviewdog
24-
with:
25-
# Please keep version in sync with the version in .gitpod.Dockerfile for a consistent experience
26-
version: 2.29.2
27-
fail_on_error: true
28-
env:
29-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
12+
- name: Checkout
13+
uses: actions/checkout@v4
14+
with:
15+
fetch-depth: 0
16+
17+
- uses: actions/setup-python@v4
18+
with:
19+
python-version: '3.x'
20+
cache: 'pip'
21+
22+
- name: Install Python dependencies
23+
run: pip3 install -r docs/requirements.txt
24+
25+
- name: Vale
26+
uses: errata-ai/vale-action@reviewdog
27+
with:
28+
version: 3.7.1 # Please keep version in sync with the version in .gitpod.Dockerfile for a consistent experience
29+
env:
30+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3031

3132
build:
3233
runs-on: ubuntu-latest
3334
steps:
34-
- name: Checkout
35-
uses: actions/checkout@v4
36-
37-
- uses: actions/setup-python@v4
38-
with:
39-
python-version: '3.x'
40-
cache: 'pip'
41-
42-
- name: Install Python dependencies
43-
run: pip3 install -r docs/requirements.txt
44-
45-
- name: Build docs
46-
working-directory: docs
47-
run: make html
48-
49-
- name: Check links
50-
working-directory: docs
51-
run: make checklinks
35+
- name: Checkout
36+
uses: actions/checkout@v4
37+
38+
- uses: actions/setup-python@v4
39+
with:
40+
python-version: '3.x'
41+
cache: 'pip'
42+
43+
- name: Install Python dependencies
44+
run: pip3 install -r docs/requirements.txt
45+
46+
- name: Build docs
47+
working-directory: docs
48+
run: make html
49+
50+
- name: Check links
51+
working-directory: docs
52+
run: make checklinks

.gitpod.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM python:3.11
22

33
# Don't update to a higher version until this issue has been fixed: https://github.com/errata-ai/vale/issues/528
44
# Please keep version in sync with the version in .github/workflows/linting.yml for a consistent experience
5-
ENV VALE_VERSION=2.29.2
5+
ENV VALE_VERSION=3.7.1
66

77
WORKDIR /workspace
88

.gitpod.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
# Since Gitpod doesn't support caching custom Dockerfiles yet, we temporarily
2-
# use this once which has Python 3.9 and Vale preinstalled.
3-
image: dennisameling/python-vale:latest
1+
image:
2+
file: .gitpod.Dockerfile
43

54
tasks:
65
- before: pip install -r docs/requirements.txt
@@ -9,8 +8,7 @@ tasks:
98
vscode:
109
extensions:
1110
- ms-python.python
12-
- lextudio.restructuredtext
13-
- errata-ai.vale-server
11+
- [email protected] # See https://github.com/mautic/user-documentation/pull/334#issuecomment-2405922370 before upgrading. - errata-ai.vale-server
1412
- eamodio.gitlens
1513
- trond-snekvik.simple-rst
1614

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,8 @@
55
"esbonio.sphinx.confDir": "${workspaceFolder}/docs",
66
"restructuredtext.pythonRecommendation.disabled": true,
77
"restructuredtext.preview.name": "sphinx",
8+
"esbonio.sphinx.pythonCommand": "python3",
9+
"esbonio.sphinx.buildCommand": "sphinx-build",
10+
"esbonio.logging.level": "debug",
811
"gitlens.showWhatsNewAfterUpgrades": false
912
}

.well-known/funding-manifest-urls

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
https://github.com/mautic/mautic/blob/5.x/funding.json

0 commit comments

Comments
 (0)