From 02ccc5953306ad64351785017b69757339242bf9 Mon Sep 17 00:00:00 2001 From: Charles-Edouard de la Vergne Date: Mon, 13 Nov 2023 15:40:40 +0100 Subject: [PATCH] Guideline enforcer --- .github/workflows/guidelines_enforcer.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/guidelines_enforcer.yml diff --git a/.github/workflows/guidelines_enforcer.yml b/.github/workflows/guidelines_enforcer.yml new file mode 100644 index 0000000..c154d6c --- /dev/null +++ b/.github/workflows/guidelines_enforcer.yml @@ -0,0 +1,22 @@ +name: Ensure compliance with Ledger guidelines + +# This workflow is mandatory in all applications +# It calls a reusable workflow guidelines_enforcer developed by Ledger's internal developer team. +# The successful completion of the reusable workflow is a mandatory step for an app to be available on the Ledger +# application store. +# +# More information on the guidelines can be found in the repository: +# LedgerHQ/ledger-app-workflows/ + +on: + workflow_dispatch: + push: + branches: + - master + - develop + pull_request: + +jobs: + guidelines_enforcer: + name: Call Ledger guidelines_enforcer + uses: LedgerHQ/ledger-app-workflows/.github/workflows/reusable_guidelines_enforcer.yml@v1