summaryrefslogtreecommitdiff
path: root/.github
AgeCommit message (Collapse)Author
2025-11-26[5.2.x] Added timeout-minutes directive to all GitHub Actions workflows.Natalia
GitHub Actions defaults to a 360-minute (6-hour) timeout. We've had jobs hang due to issues in the parallel test runner, causing them to run for the full 6 hours. This wastes resources and negatively impacts CI availability, so explicit timeouts have been added to prevent long-running hangs. Backport of e48527f91d341c85a652499a5baaf725d36ae54f from main.
2025-11-21[5.2.x] Configured dangerous-triggers zizmor rule.Jacob Walls
Backport of 846613e521104fa2f2e1c2023e4a1a9886a2ff48 from main.
2025-11-21[5.2.x] Addressed unpinned-uses zizmor finding.Jacob Walls
Backport of 86b8058b40145fb5ba4fd859676225f533eca986 from main.
2025-11-21[5.2.x] Simplified actions after applying zizmor auto-fixes.Jacob Walls
Backport of 08f4901b3fd3f352ef9cea830d000aee73152556 from main.
2025-11-21[5.2.x] Applied auto-fixes from zizmor findings.Jacob Walls
Backport of e8958c4690faef27b6715524ecb5c49c3ecb6a09 from main.
2025-11-21[5.2.x] Added GitHub Actions linter (zizmor).Jacob Walls
At the direction of the Security Team. Thanks Markus Holtermann, Jake Howard, and Natalia Bidart for reviews. Backport of 09d4bf5cd9c95c588d3ec22edea5db1f5f146900 from main.
2025-11-10[5.2.x] Fixed unsafe variable interpolation in GitHub Action workflow.Markus Holtermann
Thank you Davide Netti for the report and initial patch. Co-authored-by: Davide Netti <davide.netti4@gmail.com> Backport of 01c70ba14899409e86dc3f6c6bcae0afc48094e7 from main.
2025-10-17[5.2.x] Refs #35844 -- Doc'd Python 3.14 compatibility.Mariusz Felisiak
Backport of 56977b466c33ca3da14a1ed2609172425a76a34e from main.
2025-07-16[5.2.x] Fixed GitHub Action that checks commit prefixes to fetch PR head ↵nessita
correctly. Backport of 8499fba0e18826a77fe32cbc13a3d951d9ca8924 from main.
2025-07-16[5.2.x] Added GitHub Action to enforce stable branch commit message prefix.nessita
Backport of 10386fac00be55e73279459f00f1959c3ef30a1c from main.
2025-03-19[5.2.x] Pinned isort version to "<6.0.0" to avoid undesired reformat.nessita
Backport of 0671a461c44ba4cf97e84b6c88413bed332df314 from main
2024-11-27Upgraded to Python 3.12, Ubuntu 24.04, and enabled fail_on_warning for docs ↵David Smith
builds.
2024-10-25Made GitHub actions display all warnings in Python tests.Mariusz Felisiak
2024-10-16Refs #35844 -- Added Python 3.14 to daily builds.Mariusz Felisiak
2024-10-09Added GitHub Action workflow to test all Python versions listed in the ↵nessita
project config file.
2024-10-09Refs #34900 -- Added Python 3.12 to classifiers and tox.ini, and used it in ↵Mariusz Felisiak
GitHub actions.
2024-10-03Bumped latest PostgreSQL to 17 in scheduled tests workflow.nessita
2024-09-19Refs #35734 -- Added entry to scheduled tests workflow to test newer ↵nessita
PostgreSQL versions.
2024-09-13Pinned Miniforge in benchmark workflow.Sarah Boyce
2024-08-20Updated GitHub PR template headings to level 4.Marijke Luttekes
GitHub pull request descriptions are rendered as a comment. Comment titles, which include the PR author, render in a h3. Hence, titles within the comment body should be header level 4. This makes pull request descriptions more accessible to screen readers.
2024-07-31Removed GitHub Actions for creating and checking reminders.nessita
2024-05-27Fixed #35479 -- Dropped support for PostgreSQL 13 and PostGIS 3.0.Mariusz Felisiak
2024-05-10Organized images in the screenshots workflow.Nick Pope
Added a top-level directory in the zip archive that is the commit hash which makes it easier when downloading multiple artifacts for comparison. Updated the filenames of screenshots for easier comparison between different cases. Added that an error is raised if no screenshots uploaded in workflow.
2024-05-10Optimized images in the screenshots workflow.Nick Pope
Running `oxipng` over a set of screenshots from a previous run that were 1.9M in size resulted in a total size of 1.3M, a 31.5% reduction. This can be useful to reduce the artifact size stored in GitHub and locally if downloading screenshots from multiple runs. See https://til.simonwillison.net/github-actions/oxipng
2024-05-10Removed obsolete logic from screenshots workflow.Nick Pope
The id was used when we attempted to update comments in an early version of the feature. Also removed the job summary as it doesn't have the value that it did in the original version of the feature.
2024-04-24Pinned GitHub Actions for reminders to commit hashes for latest release.nessita
2024-04-24Improved phrasing and removed bold text in the GitHub pull request template.nessita
2024-03-18Stopped using byte-compiled 3rd-party packages in daily builds for ↵Mariusz Felisiak
byte-compiled Django.
2024-03-04Added a GitHub pull request template.erosselli
Co-authored-by: Natalia <124304+nessita@users.noreply.github.com> Co-authored-by: Paolo Melchiorre <paolo@melchiorre.org> Co-authored-by: Adam Johnson <me@adamj.eu>
2024-02-22Added GitHub Actions to create and check for reminders in pull requests.nessita
2024-02-21Refs #30950, Refs #35187 -- Added tests for byte-compiled Django to daily ↵Jon Janzen
builds.
2024-01-26Bumped versions in Github actions configuration.Mariusz Felisiak
2023-12-15Fixed database connection for other alias in PostgreSQL tests on GitHub Actions.Nick Pope
2023-12-13Removed unnecessary write permission from screenshots Github workflow.Tom Carrick
2023-12-12Changed the screenshots Github workflow to run in the PR's branch by using ↵Tom Carrick
pull_request as event trigger. The original event trigger pull_request_target runs against the target branch (main), not the branch associated with the PR. Consequently, any new screenshots added in a PR are not captured, and the available screenshots reflect the state of the main branch code, not the code from the PR's branch. This update addresses the issue by changing the event trigger to pull_request. However, it's important to note that this adjustment breaks the comments functionality since the action no longer has write permissions.
2023-12-07Refs #34986 -- Added PyPy 3.10 with PostgreSQL to daily builds.Nick Pope
2023-11-22Refs #34986 -- Installed libmemcached-dev in PyPy 3.10 daily builds.Mariusz Felisiak
2023-11-21Added PyPy 3.10 to daily builds.Mariusz Felisiak
2023-11-20Refs #34900 -- Added Python 3.13 to daily builds.Mariusz Felisiak
2023-11-18Refs #34118 -- Used Python 3.12 for GitHub actions.Mariusz Felisiak
2023-10-19Fixed permissions for GitHub action with screenshots.Mariusz Felisiak
Follow up to 97b7970c6479ef414175f22a009240ed0df8ce46.
2023-10-18Refs #34043 -- Added GitHub action to capture screenshots in Selenium tests.Sarah Boyce
2023-10-03Used Node.js 20 for GitHub actions.Mariusz Felisiak
2023-09-21Refs #34851 -- Used PostgreSQL 13 for selenium tests.Mariusz Felisiak
Follow up to 2c6ebb65c9eb6b11347d907127b82d31e04569e5.
2023-09-05Bumped checkout version in Github actions configuration.Mariusz Felisiak
2023-06-18Improved names for Selenium daily builds.Mariusz Felisiak
2023-06-17Added Selenium tests to daily builds.Sarah Boyce
2023-06-15Added GitHub action to run Selenium tests.sarahboyce
2023-03-20Fixed some typos in comments, docstrings, and tests.Liyang Zhang
2023-03-01Refs #34140 -- Added configurations to run blacken-docs linter and adjusted ↵Mariusz Felisiak
docs. This adds: - GitHub actions, - tox configuration, - pre-commit hook, and - makefile rules to run blacken-docs linter. Co-authored-by: David Smith <smithdc@gmail.com>