20 lines
578 B
YAML
20 lines
578 B
YAML
name: Check .lock files
|
|
on:
|
|
pull_request: null
|
|
push:
|
|
branches:
|
|
- master
|
|
jobs:
|
|
lockfiles:
|
|
runs-on: ubuntu-latest
|
|
name: Verify lock file integrity
|
|
if: ${{ github.actor != 'kevinpapst' && github.actor != 'dependabot[bot]' }}
|
|
steps:
|
|
- name: Clone Kimai
|
|
uses: actions/checkout@v2
|
|
- name: Prevent file change
|
|
uses: xalvarez/prevent-file-change-action@v1
|
|
with:
|
|
githubToken: ${{ secrets.GITHUB_TOKEN }}
|
|
pattern: .*.lock
|