mirror of
https://github.com/tabler/tabler.git
synced 2025-12-21 09:24:24 +04:00
27 lines
632 B
YAML
27 lines
632 B
YAML
name: Changed lock files
|
|
on:
|
|
pull_request: null
|
|
push:
|
|
branches:
|
|
- main
|
|
- dev
|
|
|
|
permissions:
|
|
pull-requests: read
|
|
|
|
jobs:
|
|
lockfiles:
|
|
runs-on: ubuntu-latest
|
|
name: Verify lock file integrity
|
|
steps:
|
|
|
|
- name: Clone Tabler
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Prevent lock file change
|
|
uses: xalvarez/prevent-file-change-action@v1
|
|
with:
|
|
githubToken: ${{ secrets.GITHUB_TOKEN }}
|
|
pattern: Gemfile.lock|pnpm-lock.json
|
|
trustedAuthors: codecalm, dependabot
|