{"id":13724262,"url":"https://github.com/mattermost/mattermost-plugin-github","last_synced_at":"2026-04-02T20:04:53.126Z","repository":{"id":40464745,"uuid":"122987053","full_name":"mattermost/mattermost-plugin-github","owner":"mattermost","description":"GitHub plugin for Mattermost","archived":false,"fork":false,"pushed_at":"2025-08-06T17:19:16.000Z","size":6775,"stargazers_count":164,"open_issues_count":81,"forks_count":158,"subscribers_count":31,"default_branch":"master","last_synced_at":"2025-08-06T19:20:27.417Z","etag":null,"topics":["github","github-integration","hacktoberfest","mattermost","mattermost-plugin"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mattermost.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2018-02-26T15:12:08.000Z","updated_at":"2025-08-06T17:19:19.000Z","dependencies_parsed_at":"2023-10-12T15:42:52.715Z","dependency_job_id":"3dbbfa7e-00f7-4e73-aa99-608d011ecd13","html_url":"https://github.com/mattermost/mattermost-plugin-github","commit_stats":null,"previous_names":[],"tags_count":46,"template":false,"template_full_name":null,"purl":"pkg:github/mattermost/mattermost-plugin-github","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mattermost%2Fmattermost-plugin-github","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mattermost%2Fmattermost-plugin-github/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mattermost%2Fmattermost-plugin-github/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mattermost%2Fmattermost-plugin-github/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mattermost","download_url":"https://codeload.github.com/mattermost/mattermost-plugin-github/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mattermost%2Fmattermost-plugin-github/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269790078,"owners_count":24476199,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-10T02:00:08.965Z","response_time":71,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["github","github-integration","hacktoberfest","mattermost","mattermost-plugin"],"created_at":"2024-08-03T01:01:53.021Z","updated_at":"2026-04-02T20:04:53.082Z","avatar_url":"https://github.com/mattermost.png","language":"Go","readme":"# Mattermost GitHub Plugin\n\n[![Build Status](https://img.shields.io/circleci/project/github/mattermost/mattermost-plugin-github/master.svg)](https://circleci.com/gh/mattermost/mattermost-plugin-github)\n[![Code Coverage](https://img.shields.io/codecov/c/github/mattermost/mattermost-plugin-github/master.svg)](https://codecov.io/gh/mattermost/mattermost-plugin-github)\n[![Release](https://img.shields.io/github/v/release/mattermost/mattermost-plugin-github)](https://github.com/mattermost/mattermost-plugin-github/releases/latest)\n[![HW](https://img.shields.io/github/issues/mattermost/mattermost-plugin-github/Up%20For%20Grabs?color=dark%20green\u0026label=Help%20Wanted)](https://github.com/mattermost/mattermost-plugin-github/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc+label%3A%22Up+For+Grabs%22+label%3A%22Help+Wanted%22)\n\nA GitHub plugin for Mattermost. Supports GitHub SaaS and Enterprise versions.\n\nSee the [Mattermost Product Documentation](https://docs.mattermost.com/integrate/github-interoperability.html) for details on installing, configuring, enabling, and using this Mattermost integration.\n\n## Development\n\nThis plugin contains both a server and web app portion. Read our documentation about the [Developer Workflow](https://developers.mattermost.com/integrate/plugins/developer-workflow/) and [Developer Setup](https://developers.mattermost.com/integrate/plugins/developer-setup/) for more information about developing and extending plugins.\n\n### Releasing new versions\n\nThe version of a plugin is determined at compile time, automatically populating a `version` field in the [plugin manifest](plugin.json):\n* If the current commit matches a tag, the version will match after stripping any leading `v`, e.g. `1.3.1`.\n* Otherwise, the version will combine the nearest tag with `git rev-parse --short HEAD`, e.g. `1.3.1+d06e53e1`.\n* If there is no version tag, an empty version will be combined with the short hash, e.g. `0.0.0+76081421`.\n\nTo disable this behaviour, manually populate and maintain the `version` field.\n\n## How to Release\n\nTo trigger a release, follow these steps:\n\n1. **For Patch Release:** Run the following command:\n    ```\n    make patch\n    ```\n   This will release a patch change.\n\n2. **For Minor Release:** Run the following command:\n    ```\n    make minor\n    ```\n   This will release a minor change.\n\n3. **For Major Release:** Run the following command:\n    ```\n    make major\n    ```\n   This will release a major change.\n\n4. **For Patch Release Candidate (RC):** Run the following command:\n    ```\n    make patch-rc\n    ```\n   This will release a patch release candidate.\n\n5. **For Minor Release Candidate (RC):** Run the following command:\n    ```\n    make minor-rc\n    ```\n   This will release a minor release candidate.\n\n6. **For Major Release Candidate (RC):** Run the following command:\n    ```\n    make major-rc\n    ```\n   This will release a major release candidate.\n\n### Playwright e2e tests\n\nIn order to get your environment set up to run [Playwright](https://playwright.dev) tests, please see the setup guide at [e2e/playwright](/e2e/playwright#readme).\n","funding_links":[],"categories":["Go"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmattermost%2Fmattermost-plugin-github","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmattermost%2Fmattermost-plugin-github","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmattermost%2Fmattermost-plugin-github/lists"}