forked from Vhonowslend/StreamFX-Public
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (30 loc) · 779 Bytes
/
validate.yml
File metadata and controls
35 lines (30 loc) · 779 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# AUTOGENERATED COPYRIGHT HEADER START
# Copyright (C) 2020-2023 Michael Fabian 'Xaymar' Dirks <info@xaymar.com>
# AUTOGENERATED COPYRIGHT HEADER END
name: Validate Pull Request
on:
pull_request:
branches:
- '*'
concurrency:
group: validate-${{ github.ref_name }}
cancel-in-progress: true
jobs:
validate:
name: "Pull Request Validation"
strategy:
fail-fast: true
runs-on: "ubuntu-22.04"
steps:
- name: "Clone"
uses: actions/checkout@v3
with:
submodules: false
fetch-depth: 0
- name: "Copyright Headers"
shell: bash
run: |
node "tools/copyright.js" .
git --no-pager diff --patch --minimal HEAD --
git update-index --refresh
git diff-index --quiet HEAD --