Deployment not associating with PR
Closed this issue · 1 comments
digitaljohn commented
First off... love this action. I've been using it across all projects since I came across it with zero issues.
I'm working on a new pipeline which is slightly different to my usual. These are the core differences I can identity:
- There are 4 different jobs. Two of them deploy to different environments (cms and frontend), each with their own
start
andfinish
steps. - I'm using this single pipeline yaml file to handle both
push
andpull_request
triggers. E.g.
on:
push:
branches:
- master
- qa
- stage
- production
pull_request:
branches:
- master
The actual environments are showing up 100% fine within GitHub (outside of the Pull Request) but within the PR it's reporting no deployments:
Could you provide any insights into why this may be happening? Thanks!
digitaljohn commented
Resolved... I left out the ref
option. Sorry! 🤦🏼