Use this github action to create Jira issue from the dependabot pull requests created in your repo.
See action.yml
name: Update JIRA with dependabot issues
on:
schedule:
- cron: '0 */8 * * *'
jobs:
jira:
runs-on: ubuntu-latest
permissions:
pull-requests: read
steps:
- name: Dependabot JIRA Action
uses: sprout-tech/dependabot-jira-action@v1.2.1
with:
jiraIssueLabel: dependabot
jiraProjectKey: TGA
jiraIssueType: Bug
githubRepo: dependabot-jira-action
githubOwner: sprout-tech
env:
JIRA_SUBDOMAIN: ${{ secrets.JIRA_SUBDOMAIN }}
JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }}
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }}
GITHUB_API_TOKEN: ${{ secrets.CUSTOM_GITHUB_TOKEN }}
The scripts and documentation in this project are released under the MIT License
Node 18.x
Install the dependencies
$ npm install
Build the typescript and package it for distribution
$ npm run build && npm run package
Run the tests ✔️
$ npm test
PASS ./index.test.js
✓ throws invalid number (3ms)
✓ wait 500 ms (504ms)
✓ test runs (95ms)
...
The action.yml defines the inputs and output for your action.
Update the action.yml with your name, description, inputs and outputs for your action.
See the documentation
See the toolkit documentation for the various packages.
Actions are run from GitHub repos so we will checkin the packed dist folder.
Then run ncc and push the results:
$ npm run package
$ git add dist
$ git commit -a -m "New version with dependencies"
$ git push origin releases/v1
Note: We recommend using the --license
option for ncc, which will create a license file for all of the production node modules used in your project.
Your action is now published! 🚀
See the versioning documentation
You can now validate the action by referencing ./
in a workflow in your repo (see test.yml)
permissions:
pull-requests: read
steps:
- uses: actions/checkout@v2
- uses: ./
with:
jiraIssueLabel: dependabot
jiraProjectKey: TGA
jiraIssueType: Bug
githubRepo: dependabot-jira-action
githubOwner: sprout-tech
environment:
JIRA_SUBDOMAIN: ${{ env.JIRA_SUBDOMAIN }}
JIRA_USER_EMAIL: ${{ env.JIRA_USER_EMAIL }}
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }}
GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
See the actions tab for runs of this action! 🚀
After testing you can create a v1 tag to reference the stable and latest V1 action