This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new e6691964993 Derive the testing issue title date from RELEASE_DATE
(#72168)
e6691964993 is described below
commit e6691964993bd0212e510a2a4ee52ec0b32d906c
Author: Niko Oliveira <[email protected]>
AuthorDate: Thu Aug 27 13:51:39 2026 -0700
Derive the testing issue title date from RELEASE_DATE (#72168)
The title placeholder had to be filled in by hand, from today's date, even
though the wave already has a date the release manager exported as
RELEASE_DATE.
---
dev/README_RELEASE_PROVIDERS.md | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/dev/README_RELEASE_PROVIDERS.md b/dev/README_RELEASE_PROVIDERS.md
index 29b91104dda..34c2132bf0f 100644
--- a/dev/README_RELEASE_PROVIDERS.md
+++ b/dev/README_RELEASE_PROVIDERS.md
@@ -951,8 +951,11 @@ unchecked). If the issue was already created, apply the
same local edit and then
Once you are satisfied with `files/provider_issue.md` (and any checkmarks have
been carried over), create the issue from the file:
```shell script
+# Fill prepared-on date by hand when RELEASE_DATE is unset, since an empty
date formats as *today* on GNU date.
+date_cmd=(date -d); [[ "${OSTYPE}" == *darwin* ]] && date_cmd=(date -j -f
"%Y-%m-%d")
+PREPARED_ON="<MONTH DD, YYYY>"; [[ -n "${RELEASE_DATE:-}" ]] &&
PREPARED_ON=$("${date_cmd[@]}" "${RELEASE_DATE%%_*}" +'%B %d, %Y')
gh issue create --repo apache/airflow \
- --title "Status of testing Providers that were prepared on <MONTH DD,
YYYY>" \
+ --title "Status of testing Providers that were prepared on ${PREPARED_ON}"
\
--body-file files/provider_issue.md --label "testing status,kind:meta"
```