[PR] Remove extra if condition check in publish docs job [airflow]

2025-04-04 Thread via GitHub


gopidesupavan opened a new pull request, #48118:
URL: https://github.com/apache/airflow/pull/48118

   
   
   
   
   
   
   
   ---
   **^ Add meaningful description above**
   Read the **[Pull Request 
Guidelines](https://github.com/apache/airflow/blob/main/contributing-docs/05_pull_requests.rst#pull-request-guidelines)**
 for more information.
   In case of fundamental code changes, an Airflow Improvement Proposal 
([AIP](https://cwiki.apache.org/confluence/display/AIRFLOW/Airflow+Improvement+Proposals))
 is needed.
   In case of a new dependency, check compliance with the [ASF 3rd Party 
License Policy](https://www.apache.org/legal/resolved.html#category-x).
   In case of backwards incompatible changes please leave a note in a 
newsfragment file, named `{pr_number}.significant.rst` or 
`{issue_number}.significant.rst`, in 
[newsfragments](https://github.com/apache/airflow/tree/main/newsfragments).
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@airflow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Remove extra if condition check in publish docs job [airflow]

2025-03-27 Thread via GitHub


gopidesupavan commented on PR #48118:
URL: https://github.com/apache/airflow/pull/48118#issuecomment-2746297281

   We already validating condition on job level for the branch 
https://github.com/apache/airflow/pull/48118/files#diff-abe78e8f48c54c3cea977de0f6ad47870b0cf21522527a4b67a3aaa401c54a95R327
 , so its not required to check again in steps.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@airflow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Remove extra if condition check in publish docs job [airflow]

2025-03-24 Thread via GitHub


gopidesupavan commented on code in PR #48118:
URL: https://github.com/apache/airflow/pull/48118#discussion_r2010874695


##
.github/workflows/ci-image-checks.yml:
##
@@ -377,16 +377,13 @@ jobs:
   rm /tmp/awscliv2.zip
   sudo /tmp/aws/install --update
   rm -rf /tmp/aws/
-if: inputs.branch == 'main'
   - name: Configure AWS credentials
 uses: 
aws-actions/configure-aws-credentials@010d0da01d0b5a38af31e9c3470dbfdabdecca3a  
# v4.0.1
-if: inputs.branch == 'main'
 with:
   aws-access-key-id: ${{ secrets.DOCS_AWS_ACCESS_KEY_ID }}
   aws-secret-access-key: ${{ secrets.DOCS_AWS_SECRET_ACCESS_KEY }}
   aws-region: eu-central-1
   - name: "Upload documentation to AWS S3"
-if: inputs.branch == 'main'

Review Comment:
   Actually it wont trigger we have and condition at Job level here 
https://github.com/apache/airflow/pull/48118/files#diff-abe78e8f48c54c3cea977de0f6ad47870b0cf21522527a4b67a3aaa401c54a95R327.
 it needs canary and branch name main. so the ones removed are extra ifs. :)



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@airflow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Remove extra if condition check in publish docs job [airflow]

2025-03-24 Thread via GitHub


jscheffl commented on code in PR #48118:
URL: https://github.com/apache/airflow/pull/48118#discussion_r2010935147


##
.github/workflows/ci-image-checks.yml:
##
@@ -377,16 +377,13 @@ jobs:
   rm /tmp/awscliv2.zip
   sudo /tmp/aws/install --update
   rm -rf /tmp/aws/
-if: inputs.branch == 'main'
   - name: Configure AWS credentials
 uses: 
aws-actions/configure-aws-credentials@010d0da01d0b5a38af31e9c3470dbfdabdecca3a  
# v4.0.1
-if: inputs.branch == 'main'
 with:
   aws-access-key-id: ${{ secrets.DOCS_AWS_ACCESS_KEY_ID }}
   aws-secret-access-key: ${{ secrets.DOCS_AWS_SECRET_ACCESS_KEY }}
   aws-region: eu-central-1
   - name: "Upload documentation to AWS S3"
-if: inputs.branch == 'main'

Review Comment:
   Ah, cool. Did not see this. Then all is good :-D



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@airflow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Remove extra if condition check in publish docs job [airflow]

2025-03-24 Thread via GitHub


jscheffl commented on code in PR #48118:
URL: https://github.com/apache/airflow/pull/48118#discussion_r2010859124


##
.github/workflows/ci-image-checks.yml:
##
@@ -377,16 +377,13 @@ jobs:
   rm /tmp/awscliv2.zip
   sudo /tmp/aws/install --update
   rm -rf /tmp/aws/
-if: inputs.branch == 'main'
   - name: Configure AWS credentials
 uses: 
aws-actions/configure-aws-credentials@010d0da01d0b5a38af31e9c3470dbfdabdecca3a  
# v4.0.1
-if: inputs.branch == 'main'
 with:
   aws-access-key-id: ${{ secrets.DOCS_AWS_ACCESS_KEY_ID }}
   aws-secret-access-key: ${{ secrets.DOCS_AWS_SECRET_ACCESS_KEY }}
   aws-region: eu-central-1
   - name: "Upload documentation to AWS S3"
-if: inputs.branch == 'main'

Review Comment:
   Just saw this - do you think this is a good idea? This basically means that 
every pipeline run will publish docs to AWS?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@airflow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Remove extra if condition check in publish docs job [airflow]

2025-03-24 Thread via GitHub


gopidesupavan merged PR #48118:
URL: https://github.com/apache/airflow/pull/48118


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@airflow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org