GitHub Action for adding a link to issue on PR description from PR title
string
Required. GitHub Token from action context
string
Required. Issue tracking host URL
string
Optional. Default to ### Issuer
boolean
Optional. Default to false
, indicates weather the action should validate the PR title
string
Optional. Default to -issuer
, if validate
set to true
, when label set, the action will skip verification
The Action can also verify the Pull-request title:
- It will check that the Title includes an issue
- It will check that the structure of the title follow a proper format
CODE-XXX [, CODE-XXX]: Title
- It can be skipped by using the
ignore_label
name: Issue tracking
jobs:
issue-tracking:
name: Issue tracking
runs-on: ubuntu-latest
steps:
- uses: zattoo/issuer@v2
with:
github_token: ${{github.token}}
host: 'https://atlassian.net/browse/'
title: '### Tickets'
verify: true,
ignore_label: '-verify'