Skip to content

Create a jira ticket of type bug when a dependabot with big impact is created.

Notifications You must be signed in to change notification settings

Orfium/critical-dependabot-jira

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Critical Dependabot Jira

Create a jira ticket of issue type Bug when a critical dependabot pull request is created in the repository.
Criticality can be configured by setting a CVSS threshold.

Usage

See action.yml.

Inputs

The action needs a series of inputs to be set in order to function properly.

Item Description Default
jira_base_url The base url of jira. -
jira_user_email The email of jira user to open the bug. -
jira_project The jira project key that the bug will be opened. -
jira_issue_type The jira ticket issue type. Bug
jira_label The jira ticket label. dependabot-critical
cvss_threshold The CVSS threshold that you want to trigger the bug creation. 9.0

Secrets needed

The repository needs two secrets, the pat_token which is a Github Access Token with the repo.public_repo scope if it is a public repository or all scopes under repo for private repositories and the jira_api_token which is a Jira API Token.

Outputs

Nothing to output.

Example of usage

The composite action is called inside a pull request only when it is opened. Also, the PR's actor should be dependabot.
Example snippet:

on:
  pull_request:
    types:
      - opened

jobs:
  critical-jira-creator:
    runs-on: ubuntu-latest
    if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' }}
    steps:
      - name: Checkout Repository
        uses: actions/[email protected]
      - name: Create jira ticket
        uses: Orfium/critical-dependabot-jira@test
        with:
          pat_token: ${{ secrets.PAT_TOKEN }}
          jira_base_url: ${{ secrets.JIRA_BASE_URL }}
          jira_user_email: ${{ secrets.JIRA_USER_EMAIL }}
          jira_api_token: ${{ secrets.JIRA_API_TOKEN }}
          jira_project: 'ADR'
          cvss_threshold: 5.0

One can also change the CVSS threshold to his/her liking. As the PR is opened from dependabot, it is crucial to set the secrets under Dependabot in Secrets sidebar. More information can be found here.

Important note

It is best to enable the setting that allows dependabot to create pull requests regarding security updates automatically. Reference link: Configuring Dependabot security updates .

Known issues

When running this GitHub action, there are some warnings and errors that you might face:

  • You get a Logged in as: undefined, when the GitHub action tries to log in to your jira user. This is a known and non-stopper issue that it is described here: GitHub Issue.
  • set-output is deprecated. We will wait for its fix.

Contributions

Special thanks to @le4ker for his contribution.

About

Create a jira ticket of type bug when a dependabot with big impact is created.

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published