36 lines
1.0 KiB
YAML
Raw Normal View History

2024-10-27 21:26:40 +01:00
name: Add copyright notice
on:
pull_request:
2024-10-27 21:46:37 +01:00
permissions:
contents: write
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
2024-10-27 21:26:40 +01:00
jobs:
copyright_notice:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.ACTIONS_TOKEN }}
2024-10-27 21:46:37 +01:00
ref: ${{ github.head_ref }}
2024-10-27 21:26:40 +01:00
- uses: VinnyBabuManjaly/copyright-action@v1.0.0
with:
CopyrightString: '/* Copyright (C) 2024-2025 LibreWeddingPlanner contributors*/\n\n'
2024-10-27 22:24:55 +01:00
FileType: '.tsx, .jsx, .ts'
2024-10-27 21:26:40 +01:00
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 .
if [ -n "$(git status --porcelain)" ]; then
echo "there are changes";
2024-10-27 22:09:02 +01:00
git commit -m "Add copyright notice"
git push
else
echo "no changes";
fi