8000 Enable Read-The-Docs and fix any issues with existing translations by lysnikolaou · Pull Request #536 · python/python-docs-el · GitHub
[go: up one dir, main page]

Skip to content

Enable Read-The-Docs and fix any issues with existing translations #536

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

Merged
merged 16 commits into from
Aug 1, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Do not check cpython dir for changed files in CI
  • Loading branch information
lysnikolaou committed Jun 21, 2024
commit fec3525d784efa16024d8ee76db53b5480a82d74
6 changes: 3 additions & 3 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ jobs:
- name: Get list with updated .po archives (PR-only)
if: github.event_name == 'pull_request'
id: changed-po-files
uses: tj-actions/changed-files@2d756ea4c53f7f6b397767d8723b3a10a9f35bf2 # v44
uses: tj-actions/changed-files@eaf854ef0c266753e1abec356dcf17d92695b251 # v44.5.3
with:
files: |
**/*.po
files: "**/*.po"
exclude_submodules: true
- name: Create list with .po files to check
id: po-files-to-check
env:
Expand Down
0