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 40902de7e7d Skip newsfragment check on label events to avoid approval 
requirement (#64901)
40902de7e7d is described below

commit 40902de7e7d31225410db85e3707aaf494ab5e90
Author: Jarek Potiuk <[email protected]>
AuthorDate: Wed Apr 8 15:46:44 2026 +0300

    Skip newsfragment check on label events to avoid approval requirement 
(#64901)
    
    The `labeled`/`unlabeled` event types triggered this workflow when
    boring-cyborg bot added labels, which required manual approval to run.
    Since this check only needs to run on code changes (opened, reopened,
    synchronize), removing the label event types avoids unnecessary workflow
    runs that need approval.
---
 .github/workflows/check-newsfragment-pr-number.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/check-newsfragment-pr-number.yml 
b/.github/workflows/check-newsfragment-pr-number.yml
index be31eae726e..2c9fce37b82 100644
--- a/.github/workflows/check-newsfragment-pr-number.yml
+++ b/.github/workflows/check-newsfragment-pr-number.yml
@@ -21,7 +21,7 @@ on:  # yamllint disable-line rule:truthy
   pull_request:
     branches:
       - main
-    types: [opened, reopened, synchronize, labeled, unlabeled]
+    types: [opened, reopened, synchronize]
 
 permissions:
   contents: read

Reply via email to