Skip to content

Commit 57ea0bd

Browse files
committed
ci: add workflow_dispatch trigger to YAML files
* Enable manual triggering of workflows for examples, publishing, and URLSessionExtension. * Enhances flexibility in workflow execution.
1 parent 974f496 commit 57ea0bd

3 files changed

Lines changed: 3 additions & 0 deletions

File tree

.github/workflows/URLSessionExtension.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ on:
1616
- 'Tests/URLSessionExtensionTests/**.swift'
1717
- '.github/workflows/URLSessionExtension.yml'
1818
workflow_call:
19+
workflow_dispatch:
1920
concurrency:
2021
# Limit concurrency to 1 for PRs. 'main' concurrency isn't limited.
2122
group: ${{ github.head_ref || github.run_id }}

.github/workflows/examples.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ on:
1616
- 'Examples/**.swift'
1717
- '.github/workflows/examples.yml'
1818
workflow_call:
19+
workflow_dispatch:
1920
concurrency:
2021
# Limit concurrency to 1 for PRs. 'main' concurrency isn't limited.
2122
group: ${{ github.head_ref || github.run_id }}

.github/workflows/publish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: Publish
33
on:
44
release:
55
types: [released, prereleased]
6+
workflow_dispatch:
67

78
jobs:
89
docc:

0 commit comments

Comments
 (0)