Skip to content

Commit

Permalink
patch: solo ejecutar el workflow bajo ciertas condiciones
Browse files Browse the repository at this point in the history
Signed-off-by: Francisco Solis <[email protected]>
  • Loading branch information
Im-Fran committed May 28, 2024
1 parent 96753d6 commit 85e0453
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ jobs:
# Formato de comentario: /deploy-beta
if: |
github.event.issue.author_association == 'MEMBER' &&
(github.event.issue.state == 'open' && !github.event.issue.draft && github.event.issue.state == 'open') &&
(!github.event.issue.locked && !github.event.issue.active_lock_reason) &&
(!github.event.issue.pull_request.merged_at)
(github.event.issue.state == 'open' && !github.event.issue.draft) &&
(!github.event.issue.locked && github.event.issue.active_lock_reason == null) &&
(github.event.issue.pull_request.merged_at == null)
runs-on: macos-latest
environment: development
steps:
Expand Down

0 comments on commit 85e0453

Please sign in to comment.