This is my trigger ```yaml on: pull_request: branches: - master ``` So I have an open PR targeting master from the branch `my-feature` The tip of my branch is: ``` 835e4b8 (HEAD ->my-feature origin/my-feature) Reset ``` I also noticed the following in the logs ``` HEAD is now at c1d3b56 Merge 835e4b8 into a2f6789 ``` where `a2f6789 ` is the tip of the master. Why is it using a distinct commit for the PR? All the actions from that point on operate on this commit `c1d3b56`