File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed
Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 3434 if [ "${{ github.event_name }}" = "push" ]; then
3535 bash .github/scripts/get_plugin_slug.sh main
3636 else
37- bash .github/scripts/get_plugin_slug.sh ${{ github.event.pull_request.base.sha }} ${{ github.sha }}
37+ bash .github/scripts/get_plugin_slug.sh \
38+ ${{ github.event.pull_request.base.sha }} \
39+ ${{ github.event.pull_request.head.sha }}
3840 fi
3941
4042 - name : Detect changed plugins with quality config
Original file line number Diff line number Diff line change 4141 if [ "${{ github.event_name }}" = "push" ]; then
4242 bash .github/scripts/get_plugin_slug.sh main
4343 else
44- bash .github/scripts/get_plugin_slug.sh ${{ github.event.pull_request.base.sha }} ${{ github.sha }}
44+ bash .github/scripts/get_plugin_slug.sh \
45+ ${{ github.event.pull_request.base.sha }} \
46+ ${{ github.event.pull_request.head.sha }}
4547 fi
4648
4749 - name : Detect changed plugins with quality config
Original file line number Diff line number Diff line change 4343 if [ "${{ github.event_name }}" = "push" ]; then
4444 bash .github/scripts/get_plugin_slug.sh main
4545 else
46- bash .github/scripts/get_plugin_slug.sh ${{ github.event.pull_request.base.sha }} ${{ github.sha }}
46+ bash .github/scripts/get_plugin_slug.sh \
47+ ${{ github.event.pull_request.base.sha }} \
48+ ${{ github.event.pull_request.head.sha }}
4749 fi
4850
4951 - name : Detect changed plugin with E2E config
You can’t perform that action at this time.
0 commit comments