Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/workflows/license-inventory.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: license-inventory
on:
schedule:
- cron: "0 5 * * 1" # Mondays ~06:00 Europe/Stockholm
workflow_dispatch:
jobs:
inventory:
permissions:
contents: write
pull-requests: write
uses: HedvigInsurance/prod-env/.github/workflows/license-inventory.yml@master
16 changes: 16 additions & 0 deletions .github/workflows/license.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: license
on:
pull_request:
push:
branches: [develop, "renovate/**"]
jobs:
license:
uses: HedvigInsurance/prod-env/.github/workflows/license-gate.yml@master
with:
# Android ships to end-user devices (a distribution context), so block weak
# copyleft (LGPL/MPL/EPL) as well as forbidden licenses — not just the
# forbidden set that backends gate on.
gate-severity: "HIGH,CRITICAL"
# Warn-only pilot: reports findings but never fails the build. Review one run,
# populate `ignored-licenses` for any pre-existing hits, then remove this line.
enforce: false
Loading