Revert ObjectFactory#find method returning false instead of nil on missing object #1871
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Verify | |
on: | |
pull_request: | |
branches: | |
- '**' | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- labeled | |
- unlabeled | |
jobs: | |
check_pr_labels: | |
runs-on: ubuntu-latest | |
name: PR has required labels | |
steps: | |
- uses: actions/checkout@v2 | |
# https://github.com/marketplace/actions/label-checker-for-pull-requests | |
- name: Check PR for Release Notes labels | |
uses: docker://agilepathway/pull-request-label-checker:latest | |
with: | |
one_of: patch-ver,minor-ver,major-ver,ignore-for-release | |
repo_token: ${{ secrets.GITHUB_TOKEN }} |