Page MenuHomeMiraheze
Feed Advanced Search

Jan 31 2024

OrangeStar closed T11518: errors on Special:Analytics page as Invalid.

Unfortunately we can't help with debugging TLS issues here since it depends on how you have things setup there. Closing since the issue is unrelated to the MatomoAnalytics extension.

Jan 31 2024, 16:33 · MatomoAnalytics, MediaWiki (SRE)
OrangeStar added a comment to T11518: errors on Special:Analytics page.

By certificate I strongly think it is talking about the certificate your matomo server is presenting to your mediawiki server during the TLS handshake. Your mediawiki server doesn't trust the issuer. Fixing this is very dependent on what exactly your CA setup is, what OS you're running on the mediawiki server, how you're running mediawiki, and how you want to approach this. If it is a self signed certificate, you should trust it at the OS level. If it is signed by some kind of internal CA that CA should be trusted by your mediawiki server.

Jan 31 2024, 16:28 · MatomoAnalytics, MediaWiki (SRE)

Jan 19 2024

Reception123 added a project to T11679: Can we use basic campaigns in Matomo?: MatomoAnalytics.
Jan 19 2024, 17:28 · MatomoAnalytics, MediaWiki (SRE), MediaWiki

Jan 4 2024

Gregory.ellingson added a comment to T11518: errors on Special:Analytics page.

After diving into wiki's GuzzleHttpRequest.php object I was able to fish out an error. On line 273 doing a var_dump on $handlercontext I can see the error 'Peer's Certificate issuer is not recognized.'

Jan 4 2024, 21:56 · MatomoAnalytics, MediaWiki (SRE)

Dec 26 2023

Gregory.ellingson added a comment to T11518: errors on Special:Analytics page.

This returns null
MediaWikiServices::getInstance()->getHttpRequestFactory()->get(url goes here)

Dec 26 2023, 20:05 · MatomoAnalytics, MediaWiki (SRE)
Gregory.ellingson added a comment to T11518: errors on Special:Analytics page.

I am able to confirm this function:

Dec 26 2023, 20:04 · MatomoAnalytics, MediaWiki (SRE)
Agent_Isai triaged T11518: errors on Special:Analytics page as Normal priority.
Dec 26 2023, 19:10 · MatomoAnalytics, MediaWiki (SRE)

Dec 20 2023

Gregory.ellingson added a comment to T11518: errors on Special:Analytics page.

Still nothing.

Dec 20 2023, 17:19 · MatomoAnalytics, MediaWiki (SRE)
Original_Authority added a comment to T11518: errors on Special:Analytics page.

Whilst I'm not 100% sure, I think the token just needs to be the value of the token, ie, without &token_auth= just whatever the actual token is.

Dec 20 2023, 15:00 · MatomoAnalytics, MediaWiki (SRE)
Gregory.ellingson added a comment to T11518: errors on Special:Analytics page.

Grabbed the &token_auth following the instructions from here: https://matomo.org/faq/general/faq_114/

Dec 20 2023, 14:00 · MatomoAnalytics, MediaWiki (SRE)
Original_Authority added a comment to T11518: errors on Special:Analytics page.

That's likely the issue; can you try setting the api key? I think that is where your issue lies. MediaWiki needs the API key to get the data.

Dec 20 2023, 00:42 · MatomoAnalytics, MediaWiki (SRE)

Dec 19 2023

Gregory.ellingson added a comment to T11518: errors on Special:Analytics page.

Looks like I'm getting nothing into $siteReply.

Dec 19 2023, 21:38 · MatomoAnalytics, MediaWiki (SRE)
Gregory.ellingson added a comment to T11518: errors on Special:Analytics page.

This is the configuration. I'll setup something to capture what is being returned to that function.

Dec 19 2023, 19:27 · MatomoAnalytics, MediaWiki (SRE)
Original_Authority added a comment to T11518: errors on Special:Analytics page.

The error is because whatever is being returned into $siteJson is not what is expected. It's pretty much impossible for us to help you without further details, i.e, seeing what you're passing as configuration into the extension, or what is being returned by the api call here:

			wfAppendQuery(
				$config->get( 'MatomoAnalyticsServerURL' ),
				[
					'module' => 'API',
					'format' => 'json',
					'date' => 'previous30',
					'method' => $module,
					'period' => $period,
					'idSite' => $this->siteId,
					'token_auth' => $config->get( 'MatomoAnalyticsTokenAuth' )
				]
			)
		);
Dec 19 2023, 16:33 · MatomoAnalytics, MediaWiki (SRE)
Redmin lowered the priority of T11518: errors on Special:Analytics page from Unbreak Now! to Needs Triage.
Dec 19 2023, 10:10 · MatomoAnalytics, MediaWiki (SRE)

Dec 18 2023

Gregory.ellingson triaged T11518: errors on Special:Analytics page as Unbreak Now! priority.
Dec 18 2023, 20:48 · MatomoAnalytics, MediaWiki (SRE)

Dec 13 2023

Gregory.ellingson created T11518: errors on Special:Analytics page.
Dec 13 2023, 18:53 · MatomoAnalytics, MediaWiki (SRE)

May 19 2023

MacFan4000 removed a member for MatomoAnalytics: John.
May 19 2023, 19:55

Jan 29 2023

Unknown Object (User) added a comment to T9814: The method disableCookies is registered more than once in "_paq" variable.
Jan 29 2023, 17:20 · MediaWiki (SRE), Universal Omega, MatomoAnalytics
Paladox added a comment to T9814: The method disableCookies is registered more than once in "_paq" variable.

https://github.com/miraheze/MatomoAnalytics/pull/93 fixes this.

Jan 29 2023, 16:48 · MediaWiki (SRE), Universal Omega, MatomoAnalytics
OrangeStar closed T9814: The method disableCookies is registered more than once in "_paq" variable as Resolved.
Jan 29 2023, 15:23 · MediaWiki (SRE), Universal Omega, MatomoAnalytics

Jan 26 2023

Unknown Object (User) added a comment to T9814: The method disableCookies is registered more than once in "_paq" variable.

https://github.com/miraheze/MatomoAnalytics/pull/91

Jan 26 2023, 18:49 · MediaWiki (SRE), Universal Omega, MatomoAnalytics
OrangeStar added a comment to T9814: The method disableCookies is registered more than once in "_paq" variable.

Forget the above, it was because of using var_dump in my script. No problems with the string in PHP 8.0.27.

Jan 26 2023, 15:21 · MediaWiki (SRE), Universal Omega, MatomoAnalytics
OrangeStar added a comment to T9814: The method disableCookies is registered more than once in "_paq" variable.

<s>I've narrowed it down to the string. I've made a stand-alone script and am getting the same error as the extension.</s>

Jan 26 2023, 14:53 · MediaWiki (SRE), Universal Omega, MatomoAnalytics

Jan 25 2023

OrangeStar added a comment to T9814: The method disableCookies is registered more than once in "_paq" variable.

If I had to guess, MatomoAnalyticsHooks::matomoScript, a function listening to the SkinAfterBottomScripts hook, is being called twice, for some bizarre reason most likely.

Jan 25 2023, 21:48 · MediaWiki (SRE), Universal Omega, MatomoAnalytics
OrangeStar added a comment to T9814: The method disableCookies is registered more than once in "_paq" variable.

Is this a huge issue or something quite minor?

Jan 25 2023, 21:38 · MediaWiki (SRE), Universal Omega, MatomoAnalytics
OrangeStar merged T10365: Matomo errors in console into T9814: The method disableCookies is registered more than once in "_paq" variable.
Jan 25 2023, 21:06 · MediaWiki (SRE), Universal Omega, MatomoAnalytics
OrangeStar merged task T10365: Matomo errors in console into T9814: The method disableCookies is registered more than once in "_paq" variable.
Jan 25 2023, 21:06 · MediaWiki (SRE), Universal Omega, MatomoAnalytics
BrandonWM triaged T10365: Matomo errors in console as Normal priority.
Jan 25 2023, 20:08 · MediaWiki (SRE), Universal Omega, MatomoAnalytics

Jan 11 2023

Reception123 lowered the priority of T9814: The method disableCookies is registered more than once in "_paq" variable from Normal to Low.

Triaging as low as there doesn't seem to be a huge effect because of this.

Jan 11 2023, 19:22 · MediaWiki (SRE), Universal Omega, MatomoAnalytics

Nov 9 2022

Reception123 added a comment to T9814: The method disableCookies is registered more than once in "_paq" variable.

Is this a huge issue or something quite minor?

Nov 9 2022, 12:09 · MediaWiki (SRE), Universal Omega, MatomoAnalytics

Oct 13 2022

Unknown Object (User) added a comment to T9814: The method disableCookies is registered more than once in "_paq" variable.

I dont think this is an issue with the extension, but Matomo itself, as it definitely isn't defined twice within the extension.

Oct 13 2022, 06:35 · MediaWiki (SRE), Universal Omega, MatomoAnalytics

Oct 7 2022

Paladox triaged T9814: The method disableCookies is registered more than once in "_paq" variable as Normal priority.
Oct 7 2022, 20:24 · MediaWiki (SRE), Universal Omega, MatomoAnalytics
Paladox created T9814: The method disableCookies is registered more than once in "_paq" variable.
Oct 7 2022, 20:23 · MediaWiki (SRE), Universal Omega, MatomoAnalytics

May 30 2022

Dmehus claimed T9308: Remove matomo special page in worldbox.wiki.
May 30 2022, 03:26 · Configuration, MediaWiki (SRE)
IsutanPhab added a comment to T9308: Remove matomo special page in worldbox.wiki.

@Agent Isai

May 30 2022, 03:25 · Configuration, MediaWiki (SRE)
IsutanPhab added a comment to T9308: Remove matomo special page in worldbox.wiki.

yes i changed managewiki

May 30 2022, 03:23 · Configuration, MediaWiki (SRE)
IsutanPhab added a comment to T9308: Remove matomo special page in worldbox.wiki.

Y

May 30 2022, 03:20 · Configuration, MediaWiki (SRE)
Agent_Isai triaged T9308: Remove matomo special page in worldbox.wiki as Normal priority.

You were advised on how to disable Matomo’s analytics collection on the Community noticeboard. Have you followed those steps?

May 30 2022, 03:19 · Configuration, MediaWiki (SRE)

Mar 8 2022

Reception123 closed T8860: Error in renaming Matomo references when wiki is renamed as Resolved.

Can confirm this hasn't happened with the new rename. Closing for now per above.

Mar 8 2022, 06:57 · MediaWiki (SRE), MatomoAnalytics

Mar 3 2022

Unknown Object (User) added a comment to T8860: Error in renaming Matomo references when wiki is renamed.

I would say close this task, it's not possible to extensively debug so long as not present on the mentioned wiki. Therefore, it could be reopened when it happens again, but since unactionable till then, I don't see why it should remain open.

Mar 3 2022, 07:27 · MediaWiki (SRE), MatomoAnalytics
Reception123 lowered the priority of T8860: Error in renaming Matomo references when wiki is renamed from Normal to Low.

Moving to low as it doesn't seem to be a systemic issue per @Universal_Omega and will have to wait until the next rename anyway.

Mar 3 2022, 07:05 · MediaWiki (SRE), MatomoAnalytics

Mar 1 2022

Unknown Object (User) added a comment to T8860: Error in renaming Matomo references when wiki is renamed.

My only theory at the moment is that this was due to tampvanwiki previously existing, and never had it's Matomo data in the database properly deleted. Though I can't confirm that.

Mar 1 2022, 16:44 · MediaWiki (SRE), MatomoAnalytics
RhinosF1 added a comment to T8860: Error in renaming Matomo references when wiki is renamed.

Does the recalibrate script work?

Mar 1 2022, 15:10 · MediaWiki (SRE), MatomoAnalytics
Reception123 triaged T8860: Error in renaming Matomo references when wiki is renamed as Normal priority.
Mar 1 2022, 14:51 · MediaWiki (SRE), MatomoAnalytics

Feb 7 2022

Unknown Object (User) removed a member for MatomoAnalytics: Unknown Object (User).
Feb 7 2022, 06:09
Unknown Object (User) removed a member for MatomoAnalytics: Bukkit.
Feb 7 2022, 06:09

Jan 23 2022

Lens0021 closed T8611: Write PageViewInfo and Matomo integration as Declined.

Thank you all for the comments. I close this because the usage is unclear.

Jan 23 2022, 05:10 · Universal Omega, MatomoAnalytics, MediaWiki (SRE)
Unknown Object (User) added a comment to T8611: Write PageViewInfo and Matomo integration.

I have a question: When I google it, there are search results describing pageviews of Matomo. Is it what you said the instance of Miraheze especially does not collect pageviews by the policy? (I'm sorry for not having experience with Matomo)

Jan 23 2022, 02:36 · Universal Omega, MatomoAnalytics, MediaWiki (SRE)

Jan 22 2022

Lens0021 added a comment to T8611: Write PageViewInfo and Matomo integration.

I have a question: When I google it, there are search results describing pageviews of Matomo. Is it what you said the instance of Miraheze especially does not collect pageviews by the policy? (I'm sorry for not having experience with Matomo)

Jan 22 2022, 05:14 · Universal Omega, MatomoAnalytics, MediaWiki (SRE)
Unknown Object (User) added a comment to T8611: Write PageViewInfo and Matomo integration.

True, I just saw it. So how so? Will the extension have the same functionality?

Jan 22 2022, 03:30 · Universal Omega, MatomoAnalytics, MediaWiki (SRE)
YellowFrogger added a comment to T8611: Write PageViewInfo and Matomo integration.

True, I just saw it. So how so? Will the extension have the same functionality?

Jan 22 2022, 03:14 · Universal Omega, MatomoAnalytics, MediaWiki (SRE)
Unknown Object (User) added a comment to T8611: Write PageViewInfo and Matomo integration.

This is specific for wikimedia

Jan 22 2022, 03:11 · Universal Omega, MatomoAnalytics, MediaWiki (SRE)
YellowFrogger added a comment to T8611: Write PageViewInfo and Matomo integration.

The PVW, unfortunately

Jan 22 2022, 03:10 · Universal Omega, MatomoAnalytics, MediaWiki (SRE)
YellowFrogger added a comment to T8611: Write PageViewInfo and Matomo integration.

This is specific for wikimedia

Jan 22 2022, 03:10 · Universal Omega, MatomoAnalytics, MediaWiki (SRE)
Unknown Object (User) added a comment to T8611: Write PageViewInfo and Matomo integration.

Well it collects site views, but I don't know how useful/worthwhile doing this is just for that.

Jan 22 2022, 02:59 · Universal Omega, MatomoAnalytics, MediaWiki (SRE)
Unknown Object (User) added a comment to T8611: Write PageViewInfo and Matomo integration.

https://meta.miraheze.org/wiki/Special:Analytics is the information it does collect. So I don't think it even collects those, unless I am misunderstanding that.

Jan 22 2022, 02:59 · Universal Omega, MatomoAnalytics, MediaWiki (SRE)
Lens0021 added a comment to T8611: Write PageViewInfo and Matomo integration.

Matomo doesn't even collect per page info, so I'm not exactly sure how this would really be doable here.

Jan 22 2022, 01:14 · Universal Omega, MatomoAnalytics, MediaWiki (SRE)

Jan 21 2022

Unknown Object (User) added a comment to T8611: Write PageViewInfo and Matomo integration.

Matomo doesn't even collect per page info, so I'm not exactly sure how this would really be doable here. Although this is a bit out of my expertise. Do you have any suggestions here, since you are the developer of PageViewInfoGA?

Jan 21 2022, 23:28 · Universal Omega, MatomoAnalytics, MediaWiki (SRE)

Jan 16 2022

Unknown Object (User) moved T8611: Write PageViewInfo and Matomo integration from Unsorted to Long Term on the Universal Omega board.
Jan 16 2022, 09:35 · Universal Omega, MatomoAnalytics, MediaWiki (SRE)
Unknown Object (User) moved T8611: Write PageViewInfo and Matomo integration from Short Term to Long Term on the MediaWiki (SRE) board.
Jan 16 2022, 09:35 · Universal Omega, MatomoAnalytics, MediaWiki (SRE)
Unknown Object (User) moved T8611: Write PageViewInfo and Matomo integration from Backlog to Short Term on the MediaWiki (SRE) board.
Jan 16 2022, 09:34 · Universal Omega, MatomoAnalytics, MediaWiki (SRE)
Unknown Object (User) moved T8611: Write PageViewInfo and Matomo integration from Backlog to Features on the MatomoAnalytics board.
Jan 16 2022, 09:34 · Universal Omega, MatomoAnalytics, MediaWiki (SRE)
Unknown Object (User) edited projects for T8611: Write PageViewInfo and Matomo integration, added: MatomoAnalytics; removed MediaWiki.
Jan 16 2022, 09:34 · Universal Omega, MatomoAnalytics, MediaWiki (SRE)

Nov 4 2021

Unknown Object (User) triaged T8244: MatomoAnalytics data disappears after db move as Normal priority.
Nov 4 2021, 06:47 · MediaWiki, MediaWiki (SRE), Universal Omega, revi
RhinosF1 added a comment to T8244: MatomoAnalytics data disappears after db move.

Running fix Matomo in magic repo should work

Nov 4 2021, 06:46 · MediaWiki, MediaWiki (SRE), Universal Omega, revi
revi moved T8244: MatomoAnalytics data disappears after db move from Incoming to Radar on the revi board.
Nov 4 2021, 06:34 · MediaWiki, MediaWiki (SRE), Universal Omega, revi
revi created T8244: MatomoAnalytics data disappears after db move.
Nov 4 2021, 06:34 · MediaWiki, MediaWiki (SRE), Universal Omega, revi

Sep 6 2021

Unknown Object (User) closed T7944: [MatomoAnalytics] Create better CI for MediaWiki standards and security as Resolved.
Sep 6 2021, 23:32 · MediaWiki (SRE), Technical-Debt, MatomoAnalytics, Universal Omega
Unknown Object (User) updated the task description for T7944: [MatomoAnalytics] Create better CI for MediaWiki standards and security.
Sep 6 2021, 23:32 · MediaWiki (SRE), Technical-Debt, MatomoAnalytics, Universal Omega
Lucamauri added a comment to T7974: Inconsistent minimum MW version.

As the code currently indicates, when the last update was made to it. 1.36 was the only version it worked with. Mediawiki core patches have now been backported so 1.35.3 will work once we update our code. I'll reopen this to take account of that. The code should be the source of truth as of when it was committed, we often don't update the mw.org docs.

Sep 6 2021, 10:06 · MediaWiki (SRE), Universal Omega, MatomoAnalytics

Sep 4 2021

Unknown Object (User) moved T7974: Inconsistent minimum MW version from Unsorted to Short Term on the Universal Omega board.
Sep 4 2021, 18:31 · MediaWiki (SRE), Universal Omega, MatomoAnalytics
Unknown Object (User) moved T7974: Inconsistent minimum MW version from Backlog to Short Term on the MediaWiki (SRE) board.
Sep 4 2021, 18:31 · MediaWiki (SRE), Universal Omega, MatomoAnalytics
Unknown Object (User) closed T7974: Inconsistent minimum MW version as Resolved.

https://github.com/miraheze/MatomoAnalytics/pull/54 now lowers the minimum requirement to 1.35.3

Sep 4 2021, 18:31 · MediaWiki (SRE), Universal Omega, MatomoAnalytics
RhinosF1 reopened T7974: Inconsistent minimum MW version as "Open".

Well, I am sorry but you missed the point.

Since you modified the documentation to reflect the 1.36 minimum version, are you confirming that the extension is not compatible with 1.35 any longer?
If this is correct, is there no legacy branch compatible with that version?
As the code currently indicates, when the last update was made to it. 1.36 was the only version it worked with. Mediawiki core patches have now been backported so 1.35.3 will work once we update our code. I'll reopen this to take account of that. The code should be the source of truth as of when it was committed, we often don't update the mw.org docs.

Sep 4 2021, 18:06 · MediaWiki (SRE), Universal Omega, MatomoAnalytics
Unknown Object (User) added a comment to T7974: Inconsistent minimum MW version.

The minimum version can be changed to 1
35.3.

Sep 4 2021, 17:06 · MediaWiki (SRE), Universal Omega, MatomoAnalytics
Lucamauri added a comment to T7974: Inconsistent minimum MW version.

Docs are outdated. It's a wiki so feel free to update :)
(In future, I've done it now)

Sep 4 2021, 16:55 · MediaWiki (SRE), Universal Omega, MatomoAnalytics
Redmin added a comment to T7974: Inconsistent minimum MW version.

FYI, the version was bumped by @Universal_Omega seemingly because of replacing "DB_MASTER" with "DB_PRIMARY" which has been backported to 1.35.

Sep 4 2021, 16:03 · MediaWiki (SRE), Universal Omega, MatomoAnalytics
RhinosF1 closed T7974: Inconsistent minimum MW version as Declined.

Docs are outdated. It's a wiki so feel free to update :)
(In future, I've done it now)

Sep 4 2021, 13:46 · MediaWiki (SRE), Universal Omega, MatomoAnalytics
Lucamauri created T7974: Inconsistent minimum MW version.
Sep 4 2021, 12:59 · MediaWiki (SRE), Universal Omega, MatomoAnalytics

Sep 2 2021

Unknown Object (User) moved T7944: [MatomoAnalytics] Create better CI for MediaWiki standards and security from Unsorted to Goals on the Universal Omega board.
Sep 2 2021, 18:02 · MediaWiki (SRE), Technical-Debt, MatomoAnalytics, Universal Omega
Unknown Object (User) moved T7944: [MatomoAnalytics] Create better CI for MediaWiki standards and security from Backlog to Short Term on the MediaWiki (SRE) board.
Sep 2 2021, 18:02 · MediaWiki (SRE), Technical-Debt, MatomoAnalytics, Universal Omega
Unknown Object (User) moved T7944: [MatomoAnalytics] Create better CI for MediaWiki standards and security from Backlog to Maintenance on the MatomoAnalytics board.
Sep 2 2021, 18:02 · MediaWiki (SRE), Technical-Debt, MatomoAnalytics, Universal Omega
Unknown Object (User) closed T7939: Add better CI for MediaWiki standards as Invalid.
Sep 2 2021, 18:00 · Technical-Debt, WikiDiscover, IncidentReporting, RottenLinks, DataDump, RemovePII, GlobalNewFiles, MatomoAnalytics, CreateWiki, MediaWiki (SRE), ManageWiki, Universal Omega
Unknown Object (User) triaged T7944: [MatomoAnalytics] Create better CI for MediaWiki standards and security as Low priority.
Sep 2 2021, 17:49 · MediaWiki (SRE), Technical-Debt, MatomoAnalytics, Universal Omega
Unknown Object (User) added a comment to T7939: Add better CI for MediaWiki standards.
In T7939#160072, @John wrote:
In T7939#160062, @John wrote:

One task - one end objective is a standard purpose. Why do we have a task for 9 separate objectives?

It's one end objective that all Miraheze maintained extensions have mediawiki-standard CI

9 different software components = 9 different tasks surely? They just good task management and makes things easily trackable and measurable.

Sep 2 2021, 17:32 · Technical-Debt, WikiDiscover, IncidentReporting, RottenLinks, DataDump, RemovePII, GlobalNewFiles, MatomoAnalytics, CreateWiki, MediaWiki (SRE), ManageWiki, Universal Omega
Reception123 added a comment to T7939: Add better CI for MediaWiki standards.

It's probably better to be tracking things separately and have subtasks for each extension

Sep 2 2021, 09:02 · Technical-Debt, WikiDiscover, IncidentReporting, RottenLinks, DataDump, RemovePII, GlobalNewFiles, MatomoAnalytics, CreateWiki, MediaWiki (SRE), ManageWiki, Universal Omega
John added a comment to T7939: Add better CI for MediaWiki standards.
In T7939#160062, @John wrote:

One task - one end objective is a standard purpose. Why do we have a task for 9 separate objectives?

It's one end objective that all Miraheze maintained extensions have mediawiki-standard CI

Sep 2 2021, 08:05 · Technical-Debt, WikiDiscover, IncidentReporting, RottenLinks, DataDump, RemovePII, GlobalNewFiles, MatomoAnalytics, CreateWiki, MediaWiki (SRE), ManageWiki, Universal Omega
RhinosF1 added a comment to T7939: Add better CI for MediaWiki standards.
In T7939#160062, @John wrote:

One task - one end objective is a standard purpose. Why do we have a task for 9 separate objectives?

It's one end objective that all Miraheze maintained extensions have mediawiki-standard CI

Sep 2 2021, 08:00 · Technical-Debt, WikiDiscover, IncidentReporting, RottenLinks, DataDump, RemovePII, GlobalNewFiles, MatomoAnalytics, CreateWiki, MediaWiki (SRE), ManageWiki, Universal Omega
John added a comment to T7939: Add better CI for MediaWiki standards.

One task - one end objective is a standard purpose. Why do we have a task for 9 separate objectives?

Sep 2 2021, 07:59 · Technical-Debt, WikiDiscover, IncidentReporting, RottenLinks, DataDump, RemovePII, GlobalNewFiles, MatomoAnalytics, CreateWiki, MediaWiki (SRE), ManageWiki, Universal Omega
Unknown Object (User) added a comment to T7939: Add better CI for MediaWiki standards.

I've extended the above mentioned PR to now also include phan.

Sep 2 2021, 06:28 · Technical-Debt, WikiDiscover, IncidentReporting, RottenLinks, DataDump, RemovePII, GlobalNewFiles, MatomoAnalytics, CreateWiki, MediaWiki (SRE), ManageWiki, Universal Omega
Unknown Object (User) updated the task description for T7939: Add better CI for MediaWiki standards.
Sep 2 2021, 06:27 · Technical-Debt, WikiDiscover, IncidentReporting, RottenLinks, DataDump, RemovePII, GlobalNewFiles, MatomoAnalytics, CreateWiki, MediaWiki (SRE), ManageWiki, Universal Omega
Unknown Object (User) added a comment to T7939: Add better CI for MediaWiki standards.

https://github.com/miraheze/ManageWiki/pull/297 does this for ManageWiki, implementing eslint, stylelint, and phpcs. It also will make GitHub Actions automatically commit formatting fixes, when possible.

Sep 2 2021, 03:22 · Technical-Debt, WikiDiscover, IncidentReporting, RottenLinks, DataDump, RemovePII, GlobalNewFiles, MatomoAnalytics, CreateWiki, MediaWiki (SRE), ManageWiki, Universal Omega
Unknown Object (User) moved T7939: Add better CI for MediaWiki standards from Backlog to Maintenance on the DataDump board.
Sep 2 2021, 03:17 · Technical-Debt, WikiDiscover, IncidentReporting, RottenLinks, DataDump, RemovePII, GlobalNewFiles, MatomoAnalytics, CreateWiki, MediaWiki (SRE), ManageWiki, Universal Omega
Unknown Object (User) moved T7939: Add better CI for MediaWiki standards from Backlog to Maintenance on the WikiDiscover board.
Sep 2 2021, 03:14 · Technical-Debt, WikiDiscover, IncidentReporting, RottenLinks, DataDump, RemovePII, GlobalNewFiles, MatomoAnalytics, CreateWiki, MediaWiki (SRE), ManageWiki, Universal Omega
Unknown Object (User) moved T7939: Add better CI for MediaWiki standards from Unsorted to Goals on the Universal Omega board.
Sep 2 2021, 03:14 · Technical-Debt, WikiDiscover, IncidentReporting, RottenLinks, DataDump, RemovePII, GlobalNewFiles, MatomoAnalytics, CreateWiki, MediaWiki (SRE), ManageWiki, Universal Omega
Unknown Object (User) moved T7939: Add better CI for MediaWiki standards from Backlog to Maintenance on the RottenLinks board.
Sep 2 2021, 03:14 · Technical-Debt, WikiDiscover, IncidentReporting, RottenLinks, DataDump, RemovePII, GlobalNewFiles, MatomoAnalytics, CreateWiki, MediaWiki (SRE), ManageWiki, Universal Omega
Unknown Object (User) moved T7939: Add better CI for MediaWiki standards from Backlog to Maintenance on the RemovePII board.
Sep 2 2021, 03:14 · Technical-Debt, WikiDiscover, IncidentReporting, RottenLinks, DataDump, RemovePII, GlobalNewFiles, MatomoAnalytics, CreateWiki, MediaWiki (SRE), ManageWiki, Universal Omega
Unknown Object (User) moved T7939: Add better CI for MediaWiki standards from Backlog to Short Term on the MediaWiki (SRE) board.
Sep 2 2021, 03:14 · Technical-Debt, WikiDiscover, IncidentReporting, RottenLinks, DataDump, RemovePII, GlobalNewFiles, MatomoAnalytics, CreateWiki, MediaWiki (SRE), ManageWiki, Universal Omega
Unknown Object (User) moved T7939: Add better CI for MediaWiki standards from Backlog to Maintenance on the MatomoAnalytics board.
Sep 2 2021, 03:13 · Technical-Debt, WikiDiscover, IncidentReporting, RottenLinks, DataDump, RemovePII, GlobalNewFiles, MatomoAnalytics, CreateWiki, MediaWiki (SRE), ManageWiki, Universal Omega