Skip to content

Brightscout/mattermost-plugin-github

This branch is 40 commits behind mattermost/mattermost-plugin-github:master.

Folders and files

NameName
Last commit message
Last commit date
Jun 6, 2024
Sep 17, 2020
Mar 21, 2024
Apr 29, 2024
Sep 14, 2024
Sep 30, 2020
Feb 10, 2022
Sep 12, 2024
Sep 14, 2024
Sep 13, 2020
Sep 17, 2020
Feb 15, 2024
May 6, 2022
Oct 14, 2022
Feb 15, 2024
Oct 17, 2018
Jul 4, 2024
Feb 26, 2018
Aug 28, 2024
Jul 4, 2024
Sep 12, 2024
Sep 12, 2024
Feb 13, 2024
Sep 12, 2024

Repository files navigation

Mattermost GitHub Plugin

Build Status Code Coverage Release HW

A GitHub plugin for Mattermost. Supports GitHub SaaS and Enterprise versions.

See the Mattermost Product Documentation for details on installing, configuring, enabling, and using this Mattermost integration.

Development

This plugin contains both a server and web app portion. Read our documentation about the Developer Workflow and Developer Setup for more information about developing and extending plugins.

Releasing new versions

The version of a plugin is determined at compile time, automatically populating a version field in the plugin manifest:

  • If the current commit matches a tag, the version will match after stripping any leading v, e.g. 1.3.1.
  • Otherwise, the version will combine the nearest tag with git rev-parse --short HEAD, e.g. 1.3.1+d06e53e1.
  • If there is no version tag, an empty version will be combined with the short hash, e.g. 0.0.0+76081421.

To disable this behaviour, manually populate and maintain the version field.

How to Release

To trigger a release, follow these steps:

  1. For Patch Release: Run the following command:

    make patch
    

    This will release a patch change.

  2. For Minor Release: Run the following command:

    make minor
    

    This will release a minor change.

  3. For Major Release: Run the following command:

    make major
    

    This will release a major change.

  4. For Patch Release Candidate (RC): Run the following command:

    make patch-rc
    

    This will release a patch release candidate.

  5. For Minor Release Candidate (RC): Run the following command:

    make minor-rc
    

    This will release a minor release candidate.

  6. For Major Release Candidate (RC): Run the following command:

    make major-rc
    

    This will release a major release candidate.

Playwright e2e tests

In order to get your environment set up to run Playwright tests, please see the setup guide at e2e/playwright.

About

GitHub plugin for Mattermost

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 65.3%
  • JavaScript 17.7%
  • TypeScript 13.8%
  • Makefile 2.8%
  • Other 0.4%