Skip to content

Commit

Permalink
removed if from ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
vespinola committed Jun 16, 2024
1 parent 75bf97a commit abc8cb0
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,24 @@
name: CI

on:
issue_comment:
types: [created]
push:
branches:
- main
- develop
- "feature/*"
pull_request:
branches:
- main
- develop
- "feature/*"
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
test:
if: ${{ github.event.issue.pull_request != null && github.event.comment.body == '/build' }}
runs-on: macos-latest

steps:
Expand Down

0 comments on commit abc8cb0

Please sign in to comment.