Skip to content

Commit b907f00

Browse files
authored
ci: enable manual workflows triggering (#190)
## Description This PR will allow to manually run the workflows we currently have 👍🏻 ### Type of change - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] Documentation update (improves or adds clarity to existing documentation) ### Tested on - [ ] iOS - [ ] Android ### Testing instructions <!-- Provide step-by-step instructions on how to test your changes. Include setup details if necessary. --> ### Screenshots <!-- Add screenshots here, if applicable --> ### Related issues <!-- Link related issues here using #issue-number --> ### Checklist - [ ] I have performed a self-review of my code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have updated the documentation accordingly - [ ] My changes generate no new warnings ### Additional notes <!-- Include any additional information, assumptions, or context that reviewers might need to understand this PR. -->
1 parent 6bc0947 commit b907f00

File tree

5 files changed

+5
-2
lines changed

5 files changed

+5
-2
lines changed

.github/workflows/build-android-llama-example.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ on:
1616
- third-party/android/**
1717
- examples/llama/package.json
1818
- examples/llama/android/**
19+
workflow_dispatch:
1920
jobs:
2021
build:
2122
if: github.repository == 'software-mansion/react-native-executorch'

.github/workflows/build-ios-llama-example.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ on:
1414
- '*.podspec'
1515
- 'examples/llama/ios/**'
1616
- 'examples/llama/package.json'
17+
workflow_dispatch:
1718
jobs:
1819
build:
1920
if: github.repository == 'software-mansion/react-native-executorch'

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
merge_group:
1010
types:
1111
- checks_requested
12-
12+
workflow_dispatch:
1313
jobs:
1414
lint:
1515
runs-on: ubuntu-latest

.github/workflows/docs-build-check.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ on:
1313
paths:
1414
- 'docs/**'
1515
- '.github/workflows/docs-build-check.yml'
16+
workflow_dispatch:
1617
jobs:
1718
check:
1819
if: github.repository == 'software-mansion/react-native-executorch'

.github/workflows/publish_docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
branches:
66
- main
7-
7+
workflow_dispatch:
88
jobs:
99
publish:
1010
if: github.repository == 'software-mansion/react-native-executorch'

0 commit comments

Comments
 (0)