sindresorhus/refined-github

Show the earliest tag after a merged PR #3088

fregante posted onGitHub

  1. Visit a merged PR, like https://github.com/fregante/github-url-detection/pull/2
  2. Has this PR been published/tagged yet?

Currently, the fastest way to do this:

  1. Open the More menu
  2. Visit Commits
  3. Look for the current PR in the list and figure it out

If you open the commit itself, GitHub will show both the branch and the tag that commit appears in, for example: https://github.com/fregante/github-url-detection/commit/329d756f66df44cfb97dbe8fa84c1cb3bcbe8e03

<img width="348" alt="" src="https://user-images.githubusercontent.com/1402241/81814545-35fa1100-9529-11ea-9e32-96fb90f457fd.png">

We could show a similar information on the PR event list:

<img width="701" alt="" src="https://user-images.githubusercontent.com/1402241/81814631-4e6a2b80-9529-11ea-917f-5a3b1aca7ec4.png">


If someone wants to send A PR, I figured out how github gets the info

Get the merge commit from the DOM to get the associated tag example URL https://github.com/fregante/github-url-detection/branch_commits/329d756 <-- merge commit abbreviatedOid

const getAssociatedTag = async (mergeCommit: string): Promise<string | undefined> => {
    const firstAssociatedTag = await fetchDom(`/${getRepoURL()}/branch_commits/${mergeCommit}`, 'ul.branches-tag-list li:last-child a');
    if (!firstAssociatedTag) {
        return;
    }

    return firstAssociatedTag.textContent!;
};

To get the time it was tagged

const getTagDate = async (lastTag: string): Promise<Date> => {
    const {repository} = await api.v4(`
        repository(${getRepoGQL()}) {
            ref(qualifiedName: "refs/tags/${lastTag}") {
                target {
                    ... on Tag {
                        tagger {
                            date
                        }
                    }
                }
            }
        }
    `);
    return repository.ref.target.tagger.date;
};
posted by yakov116 almost 5 years ago

@fregante I think here. image

Since sometimes it can be really long PR and many time line items and it would get lost.

posted by yakov116 almost 5 years ago

I think here. image

Yeah that would also avoid the API call.

The code looks simple, you can send a PR. However the PR header is dynamic. Can try using #3084 like here?

https://github.com/sindresorhus/refined-github/blob/ed1708daa89189937ad8411e6ecc5de719ce55b1/source/features/linkify-code.tsx#L22-L26

posted by fregante almost 5 years ago

Fund this Issue

$0.00
Funded

Pull requests