Skip to content

Commit 16316b9

Browse files
committed
Merge remote-tracking branch 'ledger/develop' into patch/v1.1.1
* ledger/develop: [auto] Add guideline enforcer [auto] Add manifest [auto]: add PR template
2 parents 1b2d438 + 8114c70 commit 16316b9

File tree

3 files changed

+35
-0
lines changed

3 files changed

+35
-0
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Checklist
2+
<!-- Put an `x` in each box when you have completed the items. -->
3+
- [ ] App update process has been followed <!-- See comment below -->
4+
- [ ] Target branch is `develop` <!-- unless you have a very good reason -->
5+
- [ ] Application version has been bumped <!-- required if your changes are to be deployed -->
6+
7+
<!-- Make sure you followed the process described in https://developers.ledger.com/docs/embedded-app/maintenance/ before opening your Pull Request.
8+
Don't hesitate to contact us directly on Discord if you have any questions ! https://developers.ledger.com/discord -->
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Ensure compliance with Ledger guidelines
2+
3+
# This workflow is mandatory in all applications
4+
# It calls a reusable workflow guidelines_enforcer developed by Ledger's internal developer team.
5+
# The successful completion of the reusable workflow is a mandatory step for an app to be available on the Ledger
6+
# application store.
7+
#
8+
# More information on the guidelines can be found in the repository:
9+
# LedgerHQ/ledger-app-workflows/
10+
11+
on:
12+
workflow_dispatch:
13+
push:
14+
branches:
15+
- master
16+
- main
17+
- develop
18+
pull_request:
19+
20+
jobs:
21+
guidelines_enforcer:
22+
name: Call Ledger guidelines_enforcer
23+
uses: LedgerHQ/ledger-app-workflows/.github/workflows/reusable_guidelines_enforcer.yml@v1

ledger_app.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[app]
2+
build_directory = "./"
3+
sdk = "C"
4+
devices = ["nanos", "nanox", "nanos+"]

0 commit comments

Comments
 (0)