mirror of
https://github.com/kevinpapst/kimai2.git
synced 2024-12-22 12:18:29 +00:00
24 lines
617 B
YAML
24 lines
617 B
YAML
name: Check .lock files
|
|
on:
|
|
pull_request: null
|
|
push:
|
|
branches:
|
|
- main
|
|
jobs:
|
|
lockfiles:
|
|
runs-on: ubuntu-latest
|
|
name: Verify lock file integrity
|
|
steps:
|
|
|
|
- name: Clone Kimai
|
|
uses: actions/checkout@v4
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Prevent file change
|
|
uses: xalvarez/prevent-file-change-action@v1
|
|
with:
|
|
githubToken: ${{ secrets.GITHUB_TOKEN }}
|
|
pattern: .*\.lock$
|
|
trustedAuthors: kevinpapst, dependabot
|