[Bug]: CICD Pipeline Permissions error preventing from triggering pipeline. "you do not have permission to update the application" NoPermissionToUpdateApplication #49
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Issue automation | |
| on: | |
| issues: | |
| types: [opened, closed] | |
| jobs: | |
| notify_jira: | |
| if: github.event.action == 'opened' | |
| name: Notify Jira | |
| uses: Checkmarx/plugins-release-workflow/.github/workflows/jira_notify.yml@main | |
| with: | |
| title: ${{ github.event.issue.title }} | |
| body: ${{ github.event.issue.body }} | |
| html_url: ${{ github.event.issue.html_url }} | |
| repo: ${{ github.event.repository.full_name }} | |
| secrets: inherit | |
| close_jira: | |
| if: github.event.action == 'closed' | |
| name: Close Jira | |
| uses: Checkmarx/plugins-release-workflow/.github/workflows/jira_close.yml@main | |
| with: | |
| issue_number: ${{ github.event.issue.number }} | |
| repo: ${{ github.event.repository.full_name }} | |
| secrets: inherit |