Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ivgag committed Sep 28, 2024
1 parent 61eeefb commit 2834fe1
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,16 @@ on:
branches: ["develop"]

jobs:
debug:
name: "Debug"
runs-on: ubuntu-latest
steps:
- name: Debug
run: echo "Event Name: ${{ github.event_name }}"

check-pr-title:
name: "PR Title Checker"
if: github.event_name == 'pull_request_target'
if: ${{ github.event_name == 'pull_request_target' }}
runs-on: ubuntu-latest
steps:
- name: PR Title Checker
Expand Down

0 comments on commit 2834fe1

Please sign in to comment.