You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a GitHub Action workflow that's set to run whenever a PR is merged. It was working fine until I enabled bulldozer -- now the workflow jobs are being skipped.
The condition I'm using is below:
jobs:
create_release_after_merge:
runs-on: ubuntu-latest# detect when PR is merged and the PR is for a merge to mainif: (github.event.pull_request.merged == 'true' && github.event.pull_request.base.ref == 'main' || github.event_name == 'workflow_dispatch' )
Are bulldozer merges different from manual merges and this is causing my workflow to be skipped?
The text was updated successfully, but these errors were encountered:
Bulldozer uses the Github API to merge PRs using Github app auth. It doesn't have access to any special or internal API.
Perhaps try testing out to see what happens if you merge using the API with your own token? Or try changing up which events are used for detecting the merge event?
I have a GitHub Action workflow that's set to run whenever a PR is merged. It was working fine until I enabled bulldozer -- now the workflow jobs are being skipped.
The condition I'm using is below:
Are bulldozer merges different from manual merges and this is causing my workflow to be skipped?
The text was updated successfully, but these errors were encountered: