Add action to include copyright notice
Some checks failed
Check usage of free licenses / build-static-assets (pull_request) Successful in 1m9s
Playwright Tests / test (pull_request) Has been cancelled
Build Nginx-based docker image / build-static-assets (pull_request) Has been cancelled
Add copyright notice / copyright_notice (pull_request) Has been cancelled

This commit is contained in:
Manuel Bustillo 2024-10-27 21:26:40 +01:00
parent c8977c0afa
commit ce90391564

24
.github/workflows/copyright_notice.yml vendored Normal file
View File

@ -0,0 +1,24 @@
name: Add copyright notice
on:
pull_request:
jobs:
copyright_notice:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- uses: VinnyBabuManjaly/copyright-action@v1.0.0
with:
CopyrightString: 'Copyright (C) 2024 Manuel Bustillo\n'
FileType: '.rb, .erb, .jsx, tsx'
Path: 'app/, config/, db/'
IgnorePath: 'testfolder1/a/, testfolder3'
- name: Commit changes
run: |
git config --local user.email "bustikiller@bustikiller.com"
git config --local user.name "Manuel Bustillo"
git add .
git commit -m "Add copyright notice"
- name: Push changes
run: git push