Skip to content

[Jira] Add Custom Field Support #42

[Jira] Add Custom Field Support

[Jira] Add Custom Field Support #42

Workflow file for this run

name: Pull Request
on:
pull_request_target:
workflow_dispatch:
permissions:
contents: write
pull-requests: write
jobs:
GitStatusCheck:
name: GitStatusCheck
uses: EncoreDigitalGroup/ci-workflows/.github/workflows/php_gitStatusCheck.yml@main
with:
branch: ${{ github.event.repository.default_branch }}
FormatTitle:
name: FormatTitle
uses: EncoreDigitalGroup/ci-workflows/.github/workflows/formatPullRequestTitle.yml@v1
with:
branch: ${{ github.head_ref }}
pullRequestNumber: ${{ github.event.number }}
repository: ${{ github.repository }}
secrets:
token: ${{ secrets.GITHUB_TOKEN }}
Duster:
name: Duster
needs: GitStatusCheck
if: needs.GitStatusCheck.outputs.shouldRun == 'true'
uses: EncoreDigitalGroup/ci-workflows/.github/workflows/dusterFixBlame.yml@v1
permissions:
contents: write
pull-requests: write
StaticAnalysis:
needs: Duster
name: StaticAnalysis
uses: EncoreDigitalGroup/ci-workflows/.github/workflows/larastan.yml@v1
with:
phpVersion: '8.3'
path: 'src/'
branch: ${{ github.head_ref }}
Test:
needs: Duster
name: Test
uses: EncoreDigitalGroup/ci-workflows/.github/workflows/pest.yml@v1
with:
phpVersion: '8.3'
branch: ${{ github.head_ref }}
enforceCoverage: true
AutoMerge:
needs: [ StaticAnalysis, Test ]
name: AutoMerge
uses: EncoreDigitalGroup/ci-workflows/.github/workflows/dependabotAutoMerge.yml@v1