Ubuntu – How to trigger github action when PR is merged and Workflow dispatch?
I was trying to implement github actions when PR is merged. It also had a part of workflow dispatch. name: Deploy to DEV on: push: branches: - dev paths-ignore: - '.github/**' workflow_dispatch: jobs: Deploy-to-Dev: if: github.event.pull_request.merged == true runs-on: ubuntu-22.04…