Skip to content

Commit 74b72d8

Browse files
committed
Add workflow_dispatch to triggers
This allows to trigger workflow manually if needed https://docs.github.com/en/actions/reference/workflows-and-actions/events-that-trigger-workflows#workflow_dispatch
1 parent a3c487d commit 74b72d8

17 files changed

Lines changed: 21 additions & 3 deletions

.github/workflows/haskell-ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ on:
2121
merge_group:
2222
branches:
2323
- master
24+
workflow_dispatch:
25+
{}
2426
jobs:
2527
linux:
2628
name: Haskell-CI - Linux - ${{ matrix.compiler }}

fixtures/all-versions.github

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ on:
1717
- push
1818
- pull_request
1919
- merge_group
20+
- workflow_dispatch
2021
jobs:
2122
linux:
2223
name: Haskell-CI - Linux - ${{ matrix.compiler }}

fixtures/conditionals.github

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ on:
1717
- push
1818
- pull_request
1919
- merge_group
20+
- workflow_dispatch
2021
jobs:
2122
linux:
2223
name: Haskell-CI - Linux - ${{ matrix.compiler }}

fixtures/copy-fields-all.github

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ on:
1717
- push
1818
- pull_request
1919
- merge_group
20+
- workflow_dispatch
2021
jobs:
2122
linux:
2223
name: Haskell-CI - Linux - ${{ matrix.compiler }}

fixtures/copy-fields-none.github

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ on:
1717
- push
1818
- pull_request
1919
- merge_group
20+
- workflow_dispatch
2021
jobs:
2122
linux:
2223
name: Haskell-CI - Linux - ${{ matrix.compiler }}

fixtures/copy-fields-some.github

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ on:
1717
- push
1818
- pull_request
1919
- merge_group
20+
- workflow_dispatch
2021
jobs:
2122
linux:
2223
name: Haskell-CI - Linux - ${{ matrix.compiler }}

fixtures/doctest-version.github

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ on:
1717
- push
1818
- pull_request
1919
- merge_group
20+
- workflow_dispatch
2021
jobs:
2122
linux:
2223
name: Haskell-CI - Linux - ${{ matrix.compiler }}

fixtures/doctest.github

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ on:
1717
- push
1818
- pull_request
1919
- merge_group
20+
- workflow_dispatch
2021
jobs:
2122
linux:
2223
name: Haskell-CI - Linux - ${{ matrix.compiler }}

fixtures/empty-line.github

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ on:
1717
- push
1818
- pull_request
1919
- merge_group
20+
- workflow_dispatch
2021
jobs:
2122
linux:
2223
name: Haskell-CI - Linux - ${{ matrix.compiler }}

fixtures/enabled-jobs.github

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ on:
1717
- push
1818
- pull_request
1919
- merge_group
20+
- workflow_dispatch
2021
jobs:
2122
linux:
2223
name: Haskell-CI - Linux - ${{ matrix.compiler }}

0 commit comments

Comments
 (0)