Skip to content

Commit

Permalink
Use workflow_dispatch instead of pr merge event for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
mukulmishra18 committed Dec 27, 2023
1 parent e75fa8f commit af1b347
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions .github/workflows/merge.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,20 @@
name: Merge
run-name: Starting release for ${{ github.actor }} PR merge
on:
pull_request:
types:
- closed
branches:
#on:
# pull_request:
# types:
# - closed
# branches:
# Test branch for testing the merge workflow, will be changed to develop
- feature/test-automated-release
# - feature/test-automated-release
# Use the workflow_dispatch event for testing the changes
on:
workflow_dispatch:
inputs:
release-type:
description: 'Release type'
required: true
default: 'minor'

jobs:
if_merged:
Expand Down

0 comments on commit af1b347

Please sign in to comment.