Implement newly-observed-hostnames(NOH) feeds #114
This file contains hidden or 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: Review Release Notes | |
| on: pull_request | |
| env: | |
| CHANGED_FILES_DELIMITER: ";" | |
| jobs: | |
| release_notes_review: | |
| runs-on: ubuntu-latest | |
| if: github.repository == 'demisto/content' | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 2 | |
| - name: Get changed files | |
| id: changed-files | |
| uses: tj-actions/changed-files@v46.0.1 # disable-secrets-detection | |
| with: | |
| separator: ${{ env.CHANGED_FILES_DELIMITER }} | |
| files: | | |
| Packs/**/ReleaseNotes/** | |
| since_last_remote_commit: false | |
| - name: Setup Python | |
| if: ${{ steps.changed-files.outputs.all_changed_files }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.10" # The Python version set here is the minimum supported by content, if you change it here, please change all the places containing this comment. | |
| - name: Setup Poetry | |
| if: ${{ steps.changed-files.outputs.all_changed_files }} | |
| uses: Gr1N/setup-poetry@v9 | |
| - name: Install python dependencies | |
| if: ${{ steps.changed-files.outputs.all_changed_files }} | |
| run: | | |
| poetry install --with github-actions | |
| - name: Set Python Path | |
| if: ${{ steps.changed-files.outputs.all_changed_files }} | |
| run: | | |
| echo "PYTHONPATH=$GITHUB_WORKSPACE" >> $GITHUB_ENV | |
| - name: Review Release Notes | |
| if: ${{ steps.changed-files.outputs.all_changed_files }} | |
| run: | | |
| release_notes="${{ steps.changed-files.outputs.all_changed_files }}" | |
| echo "Release notes found in PR: ${release_notes}. Starting docs review..." | |
| poetry run demisto-sdk doc-review --release-notes --xsoar-only --use-git --use-packs-known-words --known-words ./Tests/known_words.txt --console-log-threshold INFO |