Updating Countly to the latest version and supressing bunch of the warnings coming from it. #37
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: Documentation Check 📚 | |
on: | |
workflow_call: | |
pull_request: | |
branches: | |
- main | |
- dev | |
types: | |
- labeled | |
jobs: | |
documentation_check: | |
name: Documentation Check 📚 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Success | |
if: ${{ github.event.label.name == 'documented' || contains( github.event.pull_request.labels.*.name, 'documented') }} | |
run: echo "Documentation Check Passed" | |
- name: Failure | |
if: ${{ github.event.label.name != 'documented' && !contains( github.event.pull_request.labels.*.name, 'documented') }} | |
run: | | |
echo "Documentation Check Failed - Missing 'documented' label on Pull Request" | |
exit 1 |