mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-18 16:11:38 +03:00
29 lines
718 B
YAML
29 lines
718 B
YAML
|
# Copyright 2019-2023 Tauri Programme within The Commons Conservancy
|
||
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
# SPDX-License-Identifier: MIT
|
||
|
|
||
|
name: Check generated files
|
||
|
|
||
|
on:
|
||
|
pull_request:
|
||
|
|
||
|
concurrency:
|
||
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||
|
cancel-in-progress: true
|
||
|
|
||
|
jobs:
|
||
|
check:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- uses: dorny/paths-filter@v2
|
||
|
id: filter
|
||
|
with:
|
||
|
list-files: shell
|
||
|
filters: |
|
||
|
added:
|
||
|
- added: '**'
|
||
|
- name: check header license on new files
|
||
|
if: ${{ steps.filter.outputs.added == 'true' }}
|
||
|
run: node check-license-header.js ${{ steps.filter.outputs.added_files }}
|