[Python-checkins] gh-101100: Test only Doc/ files in nit-picky mode (#103019)

hugovk webhook-mailer at python.org
Sat Mar 25 03:15:32 EDT 2023


https://github.com/python/cpython/commit/87adc63d66349566b6459f93be60861b9d37782f
commit: 87adc63d66349566b6459f93be60861b9d37782f
branch: main
author: Hugo van Kemenade <hugovk at users.noreply.github.com>
committer: hugovk <hugovk at users.noreply.github.com>
date: 2023-03-25T09:15:02+02:00
summary:

gh-101100: Test only Doc/ files in nit-picky mode (#103019)

gh-101100: Filter only Doc/ files

files:
M .github/workflows/doc.yml

diff --git a/.github/workflows/doc.yml b/.github/workflows/doc.yml
index 9ec60c198eb3..29387d30d5a2 100644
--- a/.github/workflows/doc.yml
+++ b/.github/workflows/doc.yml
@@ -57,6 +57,8 @@ jobs:
     - name: 'Get list of changed files'
       id: changed_files
       uses: Ana06/get-changed-files at v2.2.0
+      with:
+        filter: "Doc/**"
     - name: 'Build changed files in nit-picky mode'
       continue-on-error: true
       run: |



More information about the Python-checkins mailing list