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 1f0709c8961 Docs: Add gh pr create example to provider release 
instructions (#64865)
1f0709c8961 is described below

commit 1f0709c896133e3db9aa9073141ff6cab6abec66
Author: Jarek Potiuk <[email protected]>
AuthorDate: Tue Apr 7 23:46:51 2026 +0300

    Docs: Add gh pr create example to provider release instructions (#64865)
---
 dev/README_RELEASE_PROVIDERS.md | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/dev/README_RELEASE_PROVIDERS.md b/dev/README_RELEASE_PROVIDERS.md
index 6b7b9018a0a..e871a7ef5b3 100644
--- a/dev/README_RELEASE_PROVIDERS.md
+++ b/dev/README_RELEASE_PROVIDERS.md
@@ -30,6 +30,7 @@
   - [Perform review of security issues that are marked for the 
release](#perform-review-of-security-issues-that-are-marked-for-the-release)
   - [Convert commits to changelog entries and bump provider 
versions](#convert-commits-to-changelog-entries-and-bump-provider-versions)
   - [Update versions of dependent providers to the next 
version](#update-versions-of-dependent-providers-to-the-next-version)
+  - [Create a PR with the changes](#create-a-pr-with-the-changes)
   - [Apply incremental changes and merge the 
PR](#apply-incremental-changes-and-merge-the-pr)
   - [(Optional) Apply template updates](#optional-apply-template-updates)
   - [Build Provider distributions for SVN apache 
upload](#build-provider-distributions-for-svn-apache-upload)
@@ -234,6 +235,22 @@ removed.
 breeze release-management update-providers-next-version
 ```
 
+## Create a PR with the changes
+
+Make sure to set labels: `allow provider dependency bump` and `skip common 
compat check` to the PR,
+so that the PR is not blocked by selective checks.
+
+You can do it for example this way:
+
+```shell script
+gh pr create \
+  --title "Prepare providers release ${RELEASE_DATE}" \
+  --label "allow provider dependency bump" \
+  --label "skip common compat check" \
+  --body "Prepare providers release ${RELEASE_DATE}" \
+  --web
+```
+
 ## Apply incremental changes and merge the PR
 
 When those changes are generated, you should commit the changes, create a PR 
and get it reviewed.

Reply via email to