Skip to content

Commit

Permalink
Merge pull request #7942 from LedgerHQ/fix/external-contrib-2
Browse files Browse the repository at this point in the history
fix: external workflow call
  • Loading branch information
KVNLS authored Sep 27, 2024
2 parents 6258f19 + 5cf91dc commit 1751a82
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 12 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/build-desktop-external-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,17 @@ name: "@Desktop • Build App (external)"

on:
workflow_call:
workflow_dispatch:
inputs:
ref:
type: string
description: |
If you run this manually, and want to run on a PR, the correct ref should be refs/pull/{PR_NUMBER}/merge to
have the "normal" scenario involving checking out a merge commit between your branch and the base branch.
If you want to run only on a branch or specific commit, you can use either the sha or the branch name instead (prefer the first verion for PRs).
required: true
login:
description: The GitHub username that triggered the workflow
required: false
repository:
description: The repository to checkout the code from
type: string
required: true

jobs:
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/build-mobile-external-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,17 @@ name: "@Mobile • Build App (external)"

on:
workflow_call:
workflow_dispatch:
inputs:
ref:
type: string
description: |
If you run this manually, and want to run on a PR, the correct ref should be refs/pull/{PR_NUMBER}/merge to
have the "normal" scenario involving checking out a merge commit between your branch and the base branch.
If you want to run only on a branch or specific commit, you can use either the sha or the branch name instead (prefer the first verion for PRs).
required: true
login:
description: The GitHub username that triggered the workflow
required: false
repository:
description: The repository to checkout the code from
type: string
required: true

permissions:
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/test-desktop-external-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,17 @@ name: "@Desktop • Test App (external)"

on:
workflow_call:
workflow_dispatch:
inputs:
ref:
type: string
description: |
If you run this manually, and want to run on a PR, the correct ref should be refs/pull/{PR_NUMBER}/merge to
have the "normal" scenario involving checking out a merge commit between your branch and the base branch.
If you want to run only on a branch or specific commit, you can use either the sha or the branch name instead (prefer the first verion for PRs).
required: true
login:
description: The GitHub username that triggered the workflow
required: false
repository:
description: The repository to checkout the code from
type: string
required: true

permissions:
Expand Down

0 comments on commit 1751a82

Please sign in to comment.