This is an automated email from the ASF dual-hosted git repository.
ash pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/master by this push:
new 8b5c4a7 Temporarily disable the check-actions step (#14271)
8b5c4a7 is described below
commit 8b5c4a742d42af2410e1fc999b2a295251aa0e6e
Author: Ash Berlin-Taylor <[email protected]>
AuthorDate: Wed Feb 17 10:52:18 2021 +0000
Temporarily disable the check-actions step (#14271)
We are now getting "Error: Resource not accessible by integration"
output when we try to run this, even from a triggered workflow should
have the write permissions needed in the token.
To unblock CI I am temporarily disabling this step -- it is not required
(though very nice) as it just creates links from the CI job back to the
build image workflow
---
.github/workflows/build-images-workflow-run.yml | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/.github/workflows/build-images-workflow-run.yml
b/.github/workflows/build-images-workflow-run.yml
index 71f6b0e..c73b543 100644
--- a/.github/workflows/build-images-workflow-run.yml
+++ b/.github/workflows/build-images-workflow-run.yml
@@ -337,7 +337,7 @@ jobs:
"Building the image: CI: ${{ matrix.python-version }}. See the
[Image Build](https://github.com/${{ github.repository
}}/actions/runs/${{ github.run_id }})
for details" }
- if: steps.defaults.outputs.proceed == 'true'
+ if: false && steps.defaults.outputs.proceed == 'true'
- name: "Setup python"
uses: actions/setup-python@v2
with:
@@ -366,7 +366,7 @@ jobs:
if: steps.defaults.outputs.proceed == 'true'
- name: Update GitHub Checks for Building image with status
uses: ./main-airflow/.github/actions/checks-action
- if: always() && steps.defaults.outputs.proceed == 'true'
+ if: false && always() && steps.defaults.outputs.proceed == 'true'
with:
token: ${{ secrets.GITHUB_TOKEN }}
check_id: ${{ steps.build-image-check.outputs.check_id }}
@@ -465,7 +465,7 @@ jobs:
"Building the image: PROD: ${{ matrix.python-version }}. See the
[Image Build](https://github.com/${{ github.repository
}}/actions/runs/${{ github.run_id }})
for details" }
- if: steps.defaults.outputs.proceed == 'true'
+ if: false && steps.defaults.outputs.proceed == 'true'
- name: "Setup python"
uses: actions/setup-python@v2
with:
@@ -500,7 +500,7 @@ jobs:
if: steps.defaults.outputs.proceed == 'true'
- name: Update GitHub Checks for Building image with status
uses: ./main-airflow/.github/actions/checks-action
- if: always() && steps.defaults.outputs.proceed == 'true'
+ if: false && always() && steps.defaults.outputs.proceed == 'true'
with:
token: ${{ secrets.GITHUB_TOKEN }}
check_id: ${{ steps.build-image-check.outputs.check_id }}