Skip to content

not allowed to modify the following permissions: manage_ipam #28

not allowed to modify the following permissions: manage_ipam

not allowed to modify the following permissions: manage_ipam #28

Workflow file for this run

# This workflow is triggered by github issue and creates a jira ticket in the respective configured account
#
name: issue_notify
on:
issues:
types: [opened]
workflow_dispatch:
jobs:
jira_job:
runs-on: ubuntu-latest
steps:
- name: Jira Login
uses: atlassian/gajira-login@v3
env:
JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL}}
JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL}}
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN}}
- name: Jira Create issue
id: jira_ticket
uses: atlassian/gajira-create@v3
with:
project: ${{secrets.JIRA_PROJECT_KEY}}
issuetype: Bug
summary: '[ns1-terraform] ${{github.event.issue.title}}'
description: ${{github.event.issue.body}} see more at ${{github.event.issue.html_url}}