Coming from your detailed post: Automate Your Development Workflow With Github Actions
Putting this on same workflow like:
|
pull_request: |
|
branches: [ master ] |
I wonder won't it trigger deployment on every pull_request changes ??
|
deploy: |
|
runs-on: ubuntu-latest |
|
name: Deploy the JAR file to the remote server |
|
needs: build |
|
steps: |
Coming from your detailed post: Automate Your Development Workflow With Github Actions
Putting this on same workflow like:
workflow-github-actions/.github/workflows/demo-workflow.yml
Lines 7 to 8 in f93277f
I wonder won't it trigger deployment on every pull_request changes ??
workflow-github-actions/.github/workflows/demo-workflow.yml
Lines 59 to 63 in f93277f