Skip to content

Commit

Permalink
Adding renovate update JIRA ticket creation workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
nchiasson-dgi committed Oct 15, 2024
1 parent 241e12a commit 0243e5d
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
name: Dependabot Pull-Request Ticket
on: pull_request

jobs:
dependabot:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' || github.actor == 'renovate[bot]' }}
steps:
- name: Create Issue
uses: discoverygarden/create-issue@v1
with:
project: SEC
summary: "[${{ github.repository }}] Workflow version update"
description: |
Update to github actions workflow.
transition: "Request QA Review"
deployment-instructions: "N/A"
jira-url: ${{ secrets.JIRA_BASE_URL }}
jira-user: ${{ secrets.JIRA_USER_EMAIL }}
jira-token: ${{ secrets.JIRA_API_TOKEN }}
slack-webhook: ${{ secrets.FEED_WORKFLOW_WEBHOOK }}

0 comments on commit 0243e5d

Please sign in to comment.