Skip to content

adsec-1714 fix for missing ACI codes #134

adsec-1714 fix for missing ACI codes

adsec-1714 fix for missing ACI codes #134

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Check Jira key in PR title exists and is valid
# Runs when opening or changing a PR
on:
pull_request:
types: [opened, edited, reopened, synchronize]
branches:
- main
jobs:
# This workflow contains a single job called "check-jira"
check-jira:
# Run on Ubuntu (Linux)
runs-on: ubuntu-latest
steps:
- uses: arup-group/action-pr-title-jira-check@main
if: startsWith( github.event.pull_request.head.ref, 'release') == false
with:
prTitle: '${{ github.event.pull_request.title }}'
jiraSecret: '${{ secrets.JIRA_PASSWORD }}'
statusCategory: 'In Progress'
jiraUsername: '[email protected]'