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

Refine CI triggers for `i18n` workflow (#35533)

parent 55ed5e0f
Branches
Tags
No related merge requests found
......@@ -121,7 +121,9 @@ codeql:
i18n:
- *default
- *ci
- ".github/actions/prepare-frontend/**"
- ".github/actions/prepare-backend/**"
- ".github/workflows/i18n.yml"
- *sources
visualizations:
......
......@@ -12,8 +12,24 @@ concurrency:
cancel-in-progress: true
jobs:
files-changed:
name: Check which files changed
runs-on: ubuntu-22.04
timeout-minutes: 3
outputs:
i18n: ${{ steps.changes.outputs.i18n }}
steps:
- uses: actions/checkout@v3
- name: Test which files changed
uses: dorny/paths-filter@v2.11.1
id: changes
with:
token: ${{ github.token }}
filters: .github/file-paths.yaml
verify-i18n-files:
needs: files-changed
if: needs.files-changed.outputs.i18n == 'true'
runs-on: ubuntu-22.04
timeout-minutes: 15
steps:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment