mirror of
https://github.com/louislam/dockge.git
synced 2024-11-23 19:34:04 +00:00
chore(ci): Add workflow to prevent changing lang files (#191)
* Create prevent-file-change.yml * fix
This commit is contained in:
parent
5c35b09e93
commit
d5721dd8ca
1 changed files with 16 additions and 0 deletions
16
.github/workflows/prevent-file-change.yml
vendored
Normal file
16
.github/workflows/prevent-file-change.yml
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
name: Prevent File Change
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
check-file-changes:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Prevent file change
|
||||
uses: xalvarez/prevent-file-change-action@v1
|
||||
with:
|
||||
githubToken: ${{ secrets.GITHUB_TOKEN }}
|
||||
# Regex, /src/lang/*.json is not allowed to be changed, except for /src/lang/en.json
|
||||
pattern: '^(?!frontend/src/lang/en\.json$)frontend/src/lang/.*\.json$'
|
||||
trustedAuthors: UptimeKumaBot
|
Loading…
Reference in a new issue