[DEV-2023] fix empty area on top of solutions #6091
Workflow file for this run
This file contains 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: Check PR title | |
on: | |
pull_request: | |
# Ignore Changeset PRs | |
paths-ignore: | |
- '**/package.json' | |
- '**/CHANGELOG.md' | |
- '.changeset/**' | |
- 'package-lock.json' | |
types: | |
- opened | |
- edited | |
- synchronize | |
jobs: | |
check_pr_title: | |
# Execute this job only if the head branch is not the one created by changeset | |
if: ${{ github.head_ref }} != 'changeset-release/main' | |
name: Check PR title | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 | |
- name: Check PR is linked to Jira activity | |
uses: ./.github/actions/link-pr-to-jira-activity |