Automate issue creation on Mantis Bug Tracker with this GitHub action. It's free!
Place the following in /.github/workflows/mantisbt.yml
on:
issues:
types: [opened]
name: π Open Mantis Bug Tracker Issue
jobs:
open-issue:
name: π Open MantisBT issue
runs-on: ubuntu-latest
steps:
- name: π Open issue
uses: mjorgegulab/[email protected]
with:
base-url: 'https://bt.mantis.com'
url: '/mantis/api/rest/issues'
token: ${{ secrets.MANTIS_BT_API_KEY }}
summary: ${{ github.event.issue.title }}
description: ${{ github.event.issue.body }}
project-id: '11'
category-id: '4'
- Select the repository you want to add the action to
- Select the
Actions
tab - Select
Blank workflow file
orSet up a workflow yourself
, if you don't see these options manually create a yaml fileYour_Project/.github/workflows/mantisbt.yml
- Paste the example above into your yaml file and save
- Now you need to add a key to the
secrets
section in your project. To add asecret
go to theSettings
tab in your project then selectSecrets
. Add a newSecret
forpassword
- Update your yaml file settings
- If you appreciate this github action give it a β or show off with one of the badges below.
Keys can be added directly to your .yml config file or referenced from your project Secrets
storage.
To add a secret
go to the Settings
tab in your project then select Secrets
.
I strongly recommend you store your token
as a secret.
Key Name | Required | Example | Default Value | Description |
---|---|---|---|---|
skip-required |
No | true |
false |
Allow to skip the action required options |
Key Name | Required | Example | Default Value | Description |
---|---|---|---|---|
base-url |
Yes | https://bt.mantis.com |
null |
The base url of the MantisBT instance |
url |
Yes | /mantis/api/rest/issues |
/ |
The url resource of the MantisBT API |
timeout |
No | 4000 |
5000 |
The http request timeout (ms) |
proxy-type |
No | https |
null |
The proxy protocol to use: HTTP or HTTPS |
proxy-host |
No | 127.0.0.1 |
null |
The proxy ip/address to use |
proxy-port |
No | 8080 |
8080 |
The proxy port to use |
proxy-username |
No | root |
null |
The proxy username |
proxy-password |
No | toor |
null |
The proxy password |
Key Name | Required | Example | Default Value | Description |
---|---|---|---|---|
token |
Yes | s7dgs8s6a8fa8d68sdgdgi |
null |
The MantisBT API token |
summary |
Yes | Super Issue Title β¨ |
null |
The MantisBT issue summary field |
pre-summary |
No | SuperProject [FRONT] > |
null |
Prepend a text before the summary |
description |
Yes | Super Issue Description π |
null |
The MantisBT issue description field |
additional-information |
No | Some Tiny Additional Information |
null |
The MantisBT issue additional information field |
project-id |
Yes | 11 |
null |
The MantisBT issue project id field |
category-id |
Yes | 4 |
null |
The MantisBT issue category id field |
handler-name |
No | [email protected] |
null |
The MantisBT issue handler name field |
view-state-name |
No | private |
null |
The MantisBT issue view state name field |
priority-name |
No | normal |
null |
The MantisBT issue priority name field |
severity-name |
No | trivial |
null |
The MantisBT issue severity name field |
reproducibility-name |
No | always |
null |
The MantisBT issue reproducibility name field |
tags |
No | git log front api |
null |
The MantisBT issue tags names field |
Check Mantis Bug Tracker API documentation on This Link
This github action returns some variables once it has finished.
Key Name | Example | Description |
---|---|---|
issue-id |
00645 |
The MantisBT issue id |
issue-url |
https://bt.mantis.com/mantis/view.php?id=00645 |
The MantisBT issue url |
on:
issues:
types: [opened]
name: π Open Mantis Bug Tracker Issue
jobs:
open-issue:
name: π Open MantisBT issue
runs-on: ubuntu-latest
steps:
- name: π Open issue
id: mantisbt
uses: mjorgegulab/[email protected]
with:
base-url: 'https://bt.mantis.com'
url: '/mantis/api/rest/issues'
token: ${{ secrets.MANTIS_BT_API_KEY }}
summary: ${{ github.event.issue.title }}
description: ${{ github.event.issue.body }}
project-id: '11'
category-id: '4'
- name: π€ Print output vars
run: echo "Issue ID ==> ${{ steps.mantisbt.outputs.issue-id }}" && \
echo "Issue URL ==> ${{ steps.mantisbt.outputs.issue-url }}"
name: Capture Github issue and open new mantis bug tracker issue
on:
issues:
types: [opened]
jobs:
main:
runs-on: ubuntu-latest
steps:
- name: MantisBT Issue
id: mantisbt
uses: mjorgegulab/[email protected]
with:
base-url: 'https://bt.mantis.com'
url: '/mantis/api/rest/issues'
token: ${{ secrets.MANTIS_BT_API_KEY }}
summary: ${{ github.event.issue.title }}
description: ${{ github.event.issue.body }}
project-id: '11'
category-id: '4'
name: Open new mantis issue and update github issue
on:
issues:
types: [opened]
jobs:
main:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: MantisBT Issue
id: mantisbt
uses: mjorgegulab/[email protected]
with:
base-url: 'https://bt.mantis.com'
url: '/mantis/api/rest/issues'
token: ${{ secrets.MANTIS_BT_API_KEY }}
summary: ${{ github.event.issue.title }}
description: ${{ github.event.issue.body }}
project-id: '11'
category-id: '4'
- name: Add Mantis URL as Issue Comment
uses: peter-evans/create-or-update-comment@v3
with:
issue-number: ${{ github.event.issue.number }}
body: |
<a target="_blank" href="${{ steps.mantisbt.outputs.issue-url }}"><img src="https://i.imgur.com/vgIWfWf.png" alt="drawing" width="100"/></a>
name: Open new mantis issue and update github issue
on:
issues:
types: [opened]
jobs:
main:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: MantisBT Issue
id: mantisbt
uses: mjorgegulab/[email protected]
with:
base-url: 'https://bt.mantis.com'
url: '/mantis/api/rest/issues'
token: ${{ secrets.MANTIS_BT_API_KEY }}
timeout: '5000'
proxy-type: 'https'
proxy-host: '127.0.0.1'
proxy-port: '8080'
proxy-username: 'root'
proxy-password: 'toor'
pre-summary: 'SuperProject-01 [FRONT] >'
summary: ${{ github.event.issue.title }}
description: ${{ github.event.issue.body }}
additional-information: 'Super additional info πππ'
project-id: '11'
category-id: '4'
handler-name: '[email protected]'
view-state-name: 'public'
priority-name: 'normal'
severity-name: 'trivial'
reproducibility-name: 'never'
tags: |-
issue
github
super_tag
front
api
back
- name: Add Mantis URL as Issue Comment
uses: peter-evans/create-or-update-comment@v3
with:
issue-number: ${{ github.event.issue.number }}
body: |
<a target="_blank" href="${{ steps.mantisbt.outputs.issue-url }}"><img src="https://i.imgur.com/vgIWfWf.png" alt="drawing" width="100"/></a>
Want another example? Let me know by creating a github issue
If you appreciate this github action give it a β or show off with one of the badges below. Feel free to edit the text or color.
[<img alt="Bug Tracked With-Mantis Bug Tracker Github Action" src="https://img.shields.io/badge/Bug Tracked With-Mantis Bug Tracker Github Action-<COLOR>?style=for-the-badge&color=0077b6">](https://github.com/mjorgegulab/mantis-bug-tracker-action)
[<img alt="Bug Tracked With-Mantis Bug Tracker Github Action" src="https://img.shields.io/badge/Bug Tracked With-Mantis Bug Tracker Github Action-<COLOR>?style=for-the-badge&color=2b9348">](https://github.com/mjorgegulab/mantis-bug-tracker-action)
[<img alt="Bug Tracked With-Mantis Bug Tracker Github Action" src="https://img.shields.io/badge/Bug Tracked With-Mantis Bug Tracker Github Action-<COLOR>?style=for-the-badge&color=d00000">](https://github.com/mjorgegulab/mantis-bug-tracker-action)
PRs and Issues are welcome. π
Copyright Β© thewolfx41 - Released under the MIT License.