This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch v3-3-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v3-3-test by this push:
new d54729e43bc [v3-3-test] Derive the testing issue title date from
RELEASE_DATE (#72168) (#72179)
d54729e43bc is described below
commit d54729e43bc4ab539eb48f8678a8170b4c06dc57
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Aug 27 22:55:42 2026 +0200
[v3-3-test] Derive the testing issue title date from RELEASE_DATE (#72168)
(#72179)
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.
(cherry picked from commit e6691964993bd0212e510a2a4ee52ec0b32d906c)
Co-authored-by: Niko Oliveira <[email protected]>
---
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 6e7be44cd4d..ff43b2dc9bc 100644
--- a/dev/README_RELEASE_PROVIDERS.md
+++ b/dev/README_RELEASE_PROVIDERS.md
@@ -924,8 +924,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"
```