From da1b791602dcc51e073afa44e5c2d3bcee54d1c4 Mon Sep 17 00:00:00 2001 From: Justus Magin Date: Sun, 13 Jul 2025 10:19:50 -0700 Subject: [PATCH 1/3] upgrade python --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 96f4f4c..50afb04 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ jobs: - uses: actions/setup-python@v4 with: - python-version: "3.11" + python-version: "3.12" cache: pip ... From 7885ba6f728e47a4b45525ed6ed3e42371cad535 Mon Sep 17 00:00:00 2001 From: Justus Magin Date: Sun, 13 Jul 2025 10:20:11 -0700 Subject: [PATCH 2/3] rename the action in the readme --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 50afb04..cd50200 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ jobs: ... - - uses: xarray-contrib/issue-from-pytest-log@main + - uses: scientific-python/issue-from-pytest-log-action@main if: | failure() && ... @@ -69,7 +69,7 @@ optional. Default: `⚠️ Nightly upstream-dev CI failed ⚠️` In case you don't like the default title for new issues, this setting can be used to set a different one: ```yaml -- uses: xarray-contrib/issue-from-pytest-log@v1 +- uses: scientific-python/issue-from-pytest-log-action@main with: log-path: pytest-log.jsonl issue-title: "Nightly CI failed" @@ -84,7 +84,7 @@ optional. Default: `CI` The label to set on the new issue. ```yaml -- uses: xarray-contrib/issue-from-pytest-log@v1 +- uses: scientific-python/issue-from-pytest-log-action@main with: log-path: pytest-log.jsonl issue-label: "CI" From c780d9e750785430cd7b46502ea0a65a5d91b5d6 Mon Sep 17 00:00:00 2001 From: Justus Magin Date: Sun, 13 Jul 2025 10:55:30 -0700 Subject: [PATCH 3/3] document the `assignees` setting --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index cd50200..b93ef6d 100644 --- a/README.md +++ b/README.md @@ -89,3 +89,18 @@ The label to set on the new issue. log-path: pytest-log.jsonl issue-label: "CI" ``` + +### assignees + +optional + +Any assignees to set on the new issue: + +```yaml +- uses: scientific-python/issue-from-pytest-log-action@main + with: + log-path: pytest-log.jsonl + assignees: ["user1", "user2"] +``` + +Note that assignees must have the commit bit on the repository.