Skip to content
Snippets Groups Projects
Unverified Commit ec770b22 authored by Nemanja Glumac's avatar Nemanja Glumac Committed by GitHub
Browse files

[CI] Ignore backend changes in `frontend` workflow (#26595)

parent 174ce749
No related branches found
No related tags found
No related merge requests found
# Required checks with path filtering rules will block pull requests from merging if they change only the excluded files.
# This is a workaround to allow the PR to be merged.
# https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/troubleshooting-required-status-checks#handling-skipped-but-required-checks
name: Frontend
on:
push:
branches:
- 'master'
- 'release-**'
paths:
# documentation
- "docs/**"
- "**.md"
# backend
- "enterprise/backend/**"
- "src/**"
- "test/**"
- "*modules/**" # modules/, test_modules/
# E2E
- "**.cy.*.js" # .cy.spec.js, .cy.snap.js
- "frontend/test/__support__/e2e/**"
- "frontend/test/__runner__/*cypress*"
pull_request:
paths:
# documentation
- "docs/**"
- "**.md"
- "**_test.clj"
# backend
- "enterprise/backend/**"
- "src/**"
- "test/**"
- "*modules/**" # modules/, test_modules/
# E2E
- "**.cy.*.js" # .cy.spec.js, .cy.snap.js
- "frontend/test/__support__/e2e/**"
- "frontend/test/__runner__/*cypress*"
......
......@@ -5,11 +5,30 @@ on:
branches:
- 'master'
- 'release-**'
paths-ignore:
# documentation
- "docs/**"
- "**.md"
# backend
- "enterprise/backend/**"
- "src/**"
- "test/**"
- "*modules/**" # modules/, test_modules/
# E2E
- "**.cy.*.js" # .cy.spec.js, .cy.snap.js
- "frontend/test/__support__/e2e/**"
- "frontend/test/__runner__/*cypress*"
pull_request:
paths-ignore:
# documentation
- "docs/**"
- "**.md"
- "**_test.clj"
# backend
- "enterprise/backend/**"
- "src/**"
- "test/**"
- "*modules/**" # modules/, test_modules/
# E2E
- "**.cy.*.js" # .cy.spec.js, .cy.snap.js
- "frontend/test/__support__/e2e/**"
- "frontend/test/__runner__/*cypress*"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment