diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2025-04-01 14:33:45 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-01 14:33:45 -0300 |
commit | a738ada9dfac238a8c460e4cc887983f7cce1f32 (patch) | |
tree | 33b0376b3b320b942e2347beb75faea79c3b0aaa /.github | |
parent | e6e7c07b08c436310cc9acfe9ff6892155425703 (diff) | |
parent | cf7a7fe485373a3a376841728adb6eee422b9af4 (diff) | |
download | meta-freescale-nanbield.tar.gz |
Merge pull request #2171 from mdrodrigo/topic/nanbieldnanbield
Add update-license-file in nanbield branch
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/update-license-file.yml | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/.github/workflows/update-license-file.yml b/.github/workflows/update-license-file.yml new file mode 100644 index 000000000..2ccfe6636 --- /dev/null +++ b/.github/workflows/update-license-file.yml | |||
@@ -0,0 +1,47 @@ | |||
1 | name: Update LICENSE file | ||
2 | |||
3 | on: | ||
4 | push: | ||
5 | branches: | ||
6 | - master | ||
7 | - walnascar | ||
8 | - styhead | ||
9 | - scarthgap | ||
10 | - nanbield | ||
11 | - mickledore | ||
12 | - kirkstone | ||
13 | - honister | ||
14 | - hardknott | ||
15 | - gatesgarth | ||
16 | - dunfell | ||
17 | paths: | ||
18 | - "**/*.bb" | ||
19 | - "**/*.inc" | ||
20 | schedule: | ||
21 | - cron: "0 0 * * *" # Runs daily at midnight | ||
22 | workflow_dispatch: # Allows manual run | ||
23 | |||
24 | jobs: | ||
25 | update-license: | ||
26 | runs-on: ubuntu-latest | ||
27 | |||
28 | steps: | ||
29 | - name: Checkout repository | ||
30 | uses: actions/checkout@v3 | ||
31 | |||
32 | - name: Run license generation script | ||
33 | run: | | ||
34 | ./scripts/generate-license-file | ||
35 | |||
36 | - name: Commit and push LICENSE file | ||
37 | run: | | ||
38 | git config --local user.name "github-actions[bot]" | ||
39 | git config --local user.email "github-actions[bot]@users.noreply.github.com" | ||
40 | git add LICENSE | ||
41 | if ! git diff-index --quiet HEAD; then | ||
42 | git commit -m "Auto-update LICENSE file with current recipe licenses" | ||
43 | git push | ||
44 | fi | ||
45 | |||
46 | env: | ||
47 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||