project Websites / Gitlab Issue Listing Script avatar

websites/Gitlab-Issue-Listing-Script#42: Add support for smart commit message



Issue Information

Issue Type: issue
Status: closed
Reported By: btasker

Milestone: Backlog
Created: 23-Apr-22 11:02



Description

I accidentally closed an issue with a "fix" commit message earlier.

In Gitlab you get a smart commit notification:

Screenshot_20220423_120150

But, GILS doesn't show anything.



Toggle State Changes

Activity


We get comments and system notifications by calling the Notes API

        $url = GILSUtils::forceHTTPS($issue->_links->notes);
        $r = $this->callAPI("GET", $url."?sort=asc&order_by=created_at", false, $config->do_auth);

The documentation doesn't show any filter (default or otherwise) which should exclude these events, which suggests that Gitlab's API doesn't return them.

I've just print_r()'d the response from that API, and the noticiation definitely isn't in there.

It might be then, that this is a foible of Gitlab's API...

Closing as Won't Fix.

I've also added a new label Gitlab API Foible to track stuff like this as there was one with comments previously too.

changed the description

changed the description