Merge pull request #12731 from SORMAS-Foundation/feature-12666-allow-… #2894
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
# https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/troubleshooting-required-status-checks#handling-skipped-but-required-checks | |
name: Skip Required Status | |
on: | |
push: | |
branches: [development] | |
jobs: | |
mergefreeze: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Make mergefreeze pass if we want to commit external visits API spec to development | |
if: github.event_name == 'push' && github.ref == 'refs/heads/development' | |
run: 'echo "Skipping mergefreeze check for bot"' |