Skip to content

Commit

Permalink
fix(workflows): corrigir triggers
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasCBV committed Feb 11, 2024
1 parent 50ebebc commit 779a18c
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 8 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/docker-for-dev-env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,17 @@ name: CD - Deploy on Docker Hub

on:
workflow_run:
workflows:
- CD - Deploy functions
types:
- completed
branches:
- "develop"
- "feature/**"
- "bugfix/**"
- "release/**"
- "hotfix/**"
- "support/**"
- "dependabot/**"
- "!main"
workflows: ["CD - Deploy functions"]
types: ["completed"]

jobs:
deploy:
Expand Down
15 changes: 11 additions & 4 deletions .github/workflows/eslint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,17 @@ name: CI - Eslint

on:
workflow_run:
workflows:
- CI - Unit Tests
types:
- completed
branches:
- "develop"
- "feature/**"
- "bugfix/**"
- "release/**"
- "hotfix/**"
- "support/**"
- "dependabot/**"
- "!main"
workflows: ["CI - Unit Tests"]
types: ["completed"]

jobs:
lint:
Expand Down

0 comments on commit 779a18c

Please sign in to comment.