mirror of
https://github.com/router-for-me/CLIProxyAPI.git
synced 2026-02-03 13:00:52 +08:00
29 lines
776 B
YAML
29 lines
776 B
YAML
name: translator-path-guard
|
|
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- synchronize
|
|
- reopened
|
|
|
|
jobs:
|
|
ensure-no-translator-changes:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Detect internal/translator changes
|
|
id: changed-files
|
|
uses: tj-actions/changed-files@v45
|
|
with:
|
|
files: |
|
|
internal/translator/**
|
|
- name: Fail when restricted paths change
|
|
if: steps.changed-files.outputs.any_changed == 'true'
|
|
run: |
|
|
echo "Changes under internal/translator are not allowed in pull requests."
|
|
echo "You need to create an issue for our maintenance team to make the necessary changes."
|
|
exit 1
|