Skip to content

Support triggering from GitHub event "pull_request"

Compare
Choose a tag to compare
@simonbrandhof simonbrandhof released this 04 May 15:51
6b0def6

Upgrading to version 1.2 requires to add the trigger on pull_request in order to analyze pull requests, for example:

on:
  # Trigger analysis when pushing in master or pull requests, and when creating
  # a pull request. 
  push:
    branches:
      - master
  pull_request:
      types: [opened, synchronize, reopened]