mirror of
git://git.yoctoproject.org/meta-freescale.git
synced 2025-10-22 23:02:20 +02:00

Originally from meta-freescale-3rdparty.
Signed-off-by: Abner C. Paula <abner.cordeiro@ossystems.com.br>
(cherry picked from commit 77f6565f4a
)
36 lines
887 B
YAML
36 lines
887 B
YAML
name: Update LICENSE file
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- "**/*.bb"
|
|
- "**/*.inc"
|
|
schedule:
|
|
- cron: "0 0 * * *" # Runs daily at midnight
|
|
workflow_dispatch: # Allows manual run
|
|
|
|
jobs:
|
|
update-license:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Run license generation script
|
|
run: |
|
|
./scripts/generate-license-file
|
|
|
|
- name: Commit and push LICENSE file
|
|
run: |
|
|
git config --local user.name "github-actions[bot]"
|
|
git config --local user.email "github-actions[bot]@users.noreply.github.com"
|
|
git add LICENSE
|
|
if ! git diff-index --quiet HEAD; then
|
|
git commit -m "Auto-update LICENSE file with current recipe licenses"
|
|
git push
|
|
fi
|
|
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|