mirror of
https://github.com/tabler/tabler.git
synced 2025-12-24 18:58:15 +04:00
23 lines
527 B
YAML
23 lines
527 B
YAML
name: Changed lock files
|
|
on:
|
|
pull_request_target:
|
|
types: [opened, reopened]
|
|
|
|
permissions:
|
|
pull-requests: read
|
|
|
|
jobs:
|
|
lockfiles:
|
|
runs-on: ubuntu-latest
|
|
name: Verify lock file integrity
|
|
steps:
|
|
- name: Clone Tabler
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Prevent lock file change
|
|
uses: xalvarez/prevent-file-change-action@v2
|
|
with:
|
|
githubToken: ${{ secrets.GITHUB_TOKEN }}
|
|
pattern: Gemfile.lock|pnpm-lock.json
|
|
trustedAuthors: codecalm, dependabot
|