Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TEMP change docs file #65

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .github/workflows/require-pr-label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ permissions:
jobs:
label:
name: DO-NOT-MERGE / unresolved review
if: github.repository_owner == 'python'
runs-on: ubuntu-latest
timeout-minutes: 10

Expand All @@ -21,3 +20,12 @@ jobs:
mode: exactly
count: 0
labels: "DO-NOT-MERGE, awaiting changes, awaiting change review"

- name: "Code changes require tests or skip label"
uses: brettcannon/check-for-changed-files@v1
with:
prereq-pattern: Lib/**/*
file-pattern: |
Lib/test/**/*
skip-label: "skip tests"
failure-message: 'Code was edited without also editing a ${file-pattern} file; see https://devguide.python.org/getting-started/pull-request-lifecycle/#making-good-prs (or add the ${skip-label} label to pass this check)'
1 change: 1 addition & 0 deletions Doc/about.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
About these documents
=====================

Hi!

These documents are generated from `reStructuredText`_ sources by `Sphinx`_, a
document processor specifically written for the Python documentation.
Expand Down
Loading