diff --git a/native-provider-ci/providers/aws-native/repo/.github/workflows/build.yml b/native-provider-ci/providers/aws-native/repo/.github/workflows/build.yml index 9fcd08823f..3aa23ad191 100644 --- a/native-provider-ci/providers/aws-native/repo/.github/workflows/build.yml +++ b/native-provider-ci/providers/aws-native/repo/.github/workflows/build.yml @@ -89,7 +89,8 @@ jobs: echo 'EOF' >> $GITHUB_ENV env: GITHUB_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }} - - if: github.event_name == 'pull_request' + - if: github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' && + github.actor != 'dependabot' name: Comment on PR with Details of Schema Check uses: thollander/actions-comment-pull-request@24bffb9b452ba05a4f3f77933840a6a841d1b32b # v3.0.1 with: diff --git a/native-provider-ci/providers/aws-native/repo/.github/workflows/prerelease.yml b/native-provider-ci/providers/aws-native/repo/.github/workflows/prerelease.yml index 3b669143e5..f658256ad0 100644 --- a/native-provider-ci/providers/aws-native/repo/.github/workflows/prerelease.yml +++ b/native-provider-ci/providers/aws-native/repo/.github/workflows/prerelease.yml @@ -81,7 +81,8 @@ jobs: echo 'EOF' >> $GITHUB_ENV env: GITHUB_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }} - - if: github.event_name == 'pull_request' + - if: github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' && + github.actor != 'dependabot' name: Comment on PR with Details of Schema Check uses: thollander/actions-comment-pull-request@24bffb9b452ba05a4f3f77933840a6a841d1b32b # v3.0.1 with: diff --git a/native-provider-ci/providers/aws-native/repo/.github/workflows/release.yml b/native-provider-ci/providers/aws-native/repo/.github/workflows/release.yml index a9836fd43b..7aa3436b3d 100644 --- a/native-provider-ci/providers/aws-native/repo/.github/workflows/release.yml +++ b/native-provider-ci/providers/aws-native/repo/.github/workflows/release.yml @@ -81,7 +81,8 @@ jobs: echo 'EOF' >> $GITHUB_ENV env: GITHUB_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }} - - if: github.event_name == 'pull_request' + - if: github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' && + github.actor != 'dependabot' name: Comment on PR with Details of Schema Check uses: thollander/actions-comment-pull-request@24bffb9b452ba05a4f3f77933840a6a841d1b32b # v3.0.1 with: diff --git a/native-provider-ci/providers/aws-native/repo/.github/workflows/run-acceptance-tests.yml b/native-provider-ci/providers/aws-native/repo/.github/workflows/run-acceptance-tests.yml index b03f9a6b6d..d9217872aa 100644 --- a/native-provider-ci/providers/aws-native/repo/.github/workflows/run-acceptance-tests.yml +++ b/native-provider-ci/providers/aws-native/repo/.github/workflows/run-acceptance-tests.yml @@ -104,7 +104,8 @@ jobs: echo 'EOF' >> $GITHUB_ENV env: GITHUB_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }} - - if: github.event_name == 'pull_request' + - if: github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' && + github.actor != 'dependabot' name: Comment on PR with Details of Schema Check uses: thollander/actions-comment-pull-request@24bffb9b452ba05a4f3f77933840a6a841d1b32b # v3.0.1 with: diff --git a/native-provider-ci/providers/docker-build/repo/.github/workflows/build.yml b/native-provider-ci/providers/docker-build/repo/.github/workflows/build.yml index 57206775bc..807be605a9 100644 --- a/native-provider-ci/providers/docker-build/repo/.github/workflows/build.yml +++ b/native-provider-ci/providers/docker-build/repo/.github/workflows/build.yml @@ -99,7 +99,8 @@ jobs: echo 'EOF' >> $GITHUB_ENV env: GITHUB_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }} - - if: github.event_name == 'pull_request' + - if: github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' && + github.actor != 'dependabot' name: Comment on PR with Details of Schema Check uses: thollander/actions-comment-pull-request@24bffb9b452ba05a4f3f77933840a6a841d1b32b # v3.0.1 with: diff --git a/native-provider-ci/providers/docker-build/repo/.github/workflows/prerelease.yml b/native-provider-ci/providers/docker-build/repo/.github/workflows/prerelease.yml index f5cd76f513..9e8ece0e3c 100644 --- a/native-provider-ci/providers/docker-build/repo/.github/workflows/prerelease.yml +++ b/native-provider-ci/providers/docker-build/repo/.github/workflows/prerelease.yml @@ -91,7 +91,8 @@ jobs: echo 'EOF' >> $GITHUB_ENV env: GITHUB_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }} - - if: github.event_name == 'pull_request' + - if: github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' && + github.actor != 'dependabot' name: Comment on PR with Details of Schema Check uses: thollander/actions-comment-pull-request@24bffb9b452ba05a4f3f77933840a6a841d1b32b # v3.0.1 with: diff --git a/native-provider-ci/providers/docker-build/repo/.github/workflows/release.yml b/native-provider-ci/providers/docker-build/repo/.github/workflows/release.yml index ec840dd235..da870b4c96 100644 --- a/native-provider-ci/providers/docker-build/repo/.github/workflows/release.yml +++ b/native-provider-ci/providers/docker-build/repo/.github/workflows/release.yml @@ -91,7 +91,8 @@ jobs: echo 'EOF' >> $GITHUB_ENV env: GITHUB_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }} - - if: github.event_name == 'pull_request' + - if: github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' && + github.actor != 'dependabot' name: Comment on PR with Details of Schema Check uses: thollander/actions-comment-pull-request@24bffb9b452ba05a4f3f77933840a6a841d1b32b # v3.0.1 with: diff --git a/native-provider-ci/providers/docker-build/repo/.github/workflows/run-acceptance-tests.yml b/native-provider-ci/providers/docker-build/repo/.github/workflows/run-acceptance-tests.yml index 8117e8b4b5..83f925f305 100644 --- a/native-provider-ci/providers/docker-build/repo/.github/workflows/run-acceptance-tests.yml +++ b/native-provider-ci/providers/docker-build/repo/.github/workflows/run-acceptance-tests.yml @@ -114,7 +114,8 @@ jobs: echo 'EOF' >> $GITHUB_ENV env: GITHUB_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }} - - if: github.event_name == 'pull_request' + - if: github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' && + github.actor != 'dependabot' name: Comment on PR with Details of Schema Check uses: thollander/actions-comment-pull-request@24bffb9b452ba05a4f3f77933840a6a841d1b32b # v3.0.1 with: diff --git a/native-provider-ci/providers/google-native/repo/.github/workflows/build.yml b/native-provider-ci/providers/google-native/repo/.github/workflows/build.yml index 2659b2c06a..0786e72e12 100644 --- a/native-provider-ci/providers/google-native/repo/.github/workflows/build.yml +++ b/native-provider-ci/providers/google-native/repo/.github/workflows/build.yml @@ -93,7 +93,8 @@ jobs: echo 'EOF' >> $GITHUB_ENV env: GITHUB_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }} - - if: github.event_name == 'pull_request' + - if: github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' && + github.actor != 'dependabot' name: Comment on PR with Details of Schema Check uses: thollander/actions-comment-pull-request@24bffb9b452ba05a4f3f77933840a6a841d1b32b # v3.0.1 with: diff --git a/native-provider-ci/providers/google-native/repo/.github/workflows/prerelease.yml b/native-provider-ci/providers/google-native/repo/.github/workflows/prerelease.yml index 59f58f56e8..e1e7531d91 100644 --- a/native-provider-ci/providers/google-native/repo/.github/workflows/prerelease.yml +++ b/native-provider-ci/providers/google-native/repo/.github/workflows/prerelease.yml @@ -85,7 +85,8 @@ jobs: echo 'EOF' >> $GITHUB_ENV env: GITHUB_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }} - - if: github.event_name == 'pull_request' + - if: github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' && + github.actor != 'dependabot' name: Comment on PR with Details of Schema Check uses: thollander/actions-comment-pull-request@24bffb9b452ba05a4f3f77933840a6a841d1b32b # v3.0.1 with: diff --git a/native-provider-ci/providers/google-native/repo/.github/workflows/release.yml b/native-provider-ci/providers/google-native/repo/.github/workflows/release.yml index 02c4178501..bb0b65bf2c 100644 --- a/native-provider-ci/providers/google-native/repo/.github/workflows/release.yml +++ b/native-provider-ci/providers/google-native/repo/.github/workflows/release.yml @@ -85,7 +85,8 @@ jobs: echo 'EOF' >> $GITHUB_ENV env: GITHUB_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }} - - if: github.event_name == 'pull_request' + - if: github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' && + github.actor != 'dependabot' name: Comment on PR with Details of Schema Check uses: thollander/actions-comment-pull-request@24bffb9b452ba05a4f3f77933840a6a841d1b32b # v3.0.1 with: diff --git a/native-provider-ci/providers/google-native/repo/.github/workflows/run-acceptance-tests.yml b/native-provider-ci/providers/google-native/repo/.github/workflows/run-acceptance-tests.yml index 63a311390b..bbfc635178 100644 --- a/native-provider-ci/providers/google-native/repo/.github/workflows/run-acceptance-tests.yml +++ b/native-provider-ci/providers/google-native/repo/.github/workflows/run-acceptance-tests.yml @@ -108,7 +108,8 @@ jobs: echo 'EOF' >> $GITHUB_ENV env: GITHUB_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }} - - if: github.event_name == 'pull_request' + - if: github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' && + github.actor != 'dependabot' name: Comment on PR with Details of Schema Check uses: thollander/actions-comment-pull-request@24bffb9b452ba05a4f3f77933840a6a841d1b32b # v3.0.1 with: diff --git a/native-provider-ci/providers/kubernetes-cert-manager/repo/.github/workflows/build.yml b/native-provider-ci/providers/kubernetes-cert-manager/repo/.github/workflows/build.yml index a05180ced6..b220001f33 100644 --- a/native-provider-ci/providers/kubernetes-cert-manager/repo/.github/workflows/build.yml +++ b/native-provider-ci/providers/kubernetes-cert-manager/repo/.github/workflows/build.yml @@ -92,7 +92,8 @@ jobs: echo 'EOF' >> $GITHUB_ENV env: GITHUB_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }} - - if: github.event_name == 'pull_request' + - if: github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' && + github.actor != 'dependabot' name: Comment on PR with Details of Schema Check uses: thollander/actions-comment-pull-request@24bffb9b452ba05a4f3f77933840a6a841d1b32b # v3.0.1 with: diff --git a/native-provider-ci/providers/kubernetes-cert-manager/repo/.github/workflows/prerelease.yml b/native-provider-ci/providers/kubernetes-cert-manager/repo/.github/workflows/prerelease.yml index ffd97aa510..14244664c0 100644 --- a/native-provider-ci/providers/kubernetes-cert-manager/repo/.github/workflows/prerelease.yml +++ b/native-provider-ci/providers/kubernetes-cert-manager/repo/.github/workflows/prerelease.yml @@ -84,7 +84,8 @@ jobs: echo 'EOF' >> $GITHUB_ENV env: GITHUB_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }} - - if: github.event_name == 'pull_request' + - if: github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' && + github.actor != 'dependabot' name: Comment on PR with Details of Schema Check uses: thollander/actions-comment-pull-request@24bffb9b452ba05a4f3f77933840a6a841d1b32b # v3.0.1 with: diff --git a/native-provider-ci/providers/kubernetes-cert-manager/repo/.github/workflows/release.yml b/native-provider-ci/providers/kubernetes-cert-manager/repo/.github/workflows/release.yml index 1c4f48c435..696efc6342 100644 --- a/native-provider-ci/providers/kubernetes-cert-manager/repo/.github/workflows/release.yml +++ b/native-provider-ci/providers/kubernetes-cert-manager/repo/.github/workflows/release.yml @@ -84,7 +84,8 @@ jobs: echo 'EOF' >> $GITHUB_ENV env: GITHUB_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }} - - if: github.event_name == 'pull_request' + - if: github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' && + github.actor != 'dependabot' name: Comment on PR with Details of Schema Check uses: thollander/actions-comment-pull-request@24bffb9b452ba05a4f3f77933840a6a841d1b32b # v3.0.1 with: diff --git a/native-provider-ci/providers/kubernetes-cert-manager/repo/.github/workflows/run-acceptance-tests.yml b/native-provider-ci/providers/kubernetes-cert-manager/repo/.github/workflows/run-acceptance-tests.yml index 8c88bb825e..1b16808669 100644 --- a/native-provider-ci/providers/kubernetes-cert-manager/repo/.github/workflows/run-acceptance-tests.yml +++ b/native-provider-ci/providers/kubernetes-cert-manager/repo/.github/workflows/run-acceptance-tests.yml @@ -107,7 +107,8 @@ jobs: echo 'EOF' >> $GITHUB_ENV env: GITHUB_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }} - - if: github.event_name == 'pull_request' + - if: github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' && + github.actor != 'dependabot' name: Comment on PR with Details of Schema Check uses: thollander/actions-comment-pull-request@24bffb9b452ba05a4f3f77933840a6a841d1b32b # v3.0.1 with: diff --git a/native-provider-ci/providers/kubernetes-coredns/repo/.github/workflows/build.yml b/native-provider-ci/providers/kubernetes-coredns/repo/.github/workflows/build.yml index ce8176cbd3..d0da616484 100644 --- a/native-provider-ci/providers/kubernetes-coredns/repo/.github/workflows/build.yml +++ b/native-provider-ci/providers/kubernetes-coredns/repo/.github/workflows/build.yml @@ -92,7 +92,8 @@ jobs: echo 'EOF' >> $GITHUB_ENV env: GITHUB_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }} - - if: github.event_name == 'pull_request' + - if: github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' && + github.actor != 'dependabot' name: Comment on PR with Details of Schema Check uses: thollander/actions-comment-pull-request@24bffb9b452ba05a4f3f77933840a6a841d1b32b # v3.0.1 with: diff --git a/native-provider-ci/providers/kubernetes-coredns/repo/.github/workflows/prerelease.yml b/native-provider-ci/providers/kubernetes-coredns/repo/.github/workflows/prerelease.yml index 2c99e8518f..13879db08a 100644 --- a/native-provider-ci/providers/kubernetes-coredns/repo/.github/workflows/prerelease.yml +++ b/native-provider-ci/providers/kubernetes-coredns/repo/.github/workflows/prerelease.yml @@ -84,7 +84,8 @@ jobs: echo 'EOF' >> $GITHUB_ENV env: GITHUB_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }} - - if: github.event_name == 'pull_request' + - if: github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' && + github.actor != 'dependabot' name: Comment on PR with Details of Schema Check uses: thollander/actions-comment-pull-request@24bffb9b452ba05a4f3f77933840a6a841d1b32b # v3.0.1 with: diff --git a/native-provider-ci/providers/kubernetes-coredns/repo/.github/workflows/release.yml b/native-provider-ci/providers/kubernetes-coredns/repo/.github/workflows/release.yml index be8ef1542b..296ebb7142 100644 --- a/native-provider-ci/providers/kubernetes-coredns/repo/.github/workflows/release.yml +++ b/native-provider-ci/providers/kubernetes-coredns/repo/.github/workflows/release.yml @@ -84,7 +84,8 @@ jobs: echo 'EOF' >> $GITHUB_ENV env: GITHUB_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }} - - if: github.event_name == 'pull_request' + - if: github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' && + github.actor != 'dependabot' name: Comment on PR with Details of Schema Check uses: thollander/actions-comment-pull-request@24bffb9b452ba05a4f3f77933840a6a841d1b32b # v3.0.1 with: diff --git a/native-provider-ci/providers/kubernetes-coredns/repo/.github/workflows/run-acceptance-tests.yml b/native-provider-ci/providers/kubernetes-coredns/repo/.github/workflows/run-acceptance-tests.yml index 458abb2626..f26162b29c 100644 --- a/native-provider-ci/providers/kubernetes-coredns/repo/.github/workflows/run-acceptance-tests.yml +++ b/native-provider-ci/providers/kubernetes-coredns/repo/.github/workflows/run-acceptance-tests.yml @@ -107,7 +107,8 @@ jobs: echo 'EOF' >> $GITHUB_ENV env: GITHUB_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }} - - if: github.event_name == 'pull_request' + - if: github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' && + github.actor != 'dependabot' name: Comment on PR with Details of Schema Check uses: thollander/actions-comment-pull-request@24bffb9b452ba05a4f3f77933840a6a841d1b32b # v3.0.1 with: diff --git a/native-provider-ci/providers/kubernetes-ingress-nginx/repo/.github/workflows/build.yml b/native-provider-ci/providers/kubernetes-ingress-nginx/repo/.github/workflows/build.yml index c6abe5e275..7785c3c153 100644 --- a/native-provider-ci/providers/kubernetes-ingress-nginx/repo/.github/workflows/build.yml +++ b/native-provider-ci/providers/kubernetes-ingress-nginx/repo/.github/workflows/build.yml @@ -92,7 +92,8 @@ jobs: echo 'EOF' >> $GITHUB_ENV env: GITHUB_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }} - - if: github.event_name == 'pull_request' + - if: github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' && + github.actor != 'dependabot' name: Comment on PR with Details of Schema Check uses: thollander/actions-comment-pull-request@24bffb9b452ba05a4f3f77933840a6a841d1b32b # v3.0.1 with: diff --git a/native-provider-ci/providers/kubernetes-ingress-nginx/repo/.github/workflows/prerelease.yml b/native-provider-ci/providers/kubernetes-ingress-nginx/repo/.github/workflows/prerelease.yml index f11c85f029..d70147e95c 100644 --- a/native-provider-ci/providers/kubernetes-ingress-nginx/repo/.github/workflows/prerelease.yml +++ b/native-provider-ci/providers/kubernetes-ingress-nginx/repo/.github/workflows/prerelease.yml @@ -84,7 +84,8 @@ jobs: echo 'EOF' >> $GITHUB_ENV env: GITHUB_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }} - - if: github.event_name == 'pull_request' + - if: github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' && + github.actor != 'dependabot' name: Comment on PR with Details of Schema Check uses: thollander/actions-comment-pull-request@24bffb9b452ba05a4f3f77933840a6a841d1b32b # v3.0.1 with: diff --git a/native-provider-ci/providers/kubernetes-ingress-nginx/repo/.github/workflows/release.yml b/native-provider-ci/providers/kubernetes-ingress-nginx/repo/.github/workflows/release.yml index 6a3c5d23e7..cdf1a784c9 100644 --- a/native-provider-ci/providers/kubernetes-ingress-nginx/repo/.github/workflows/release.yml +++ b/native-provider-ci/providers/kubernetes-ingress-nginx/repo/.github/workflows/release.yml @@ -84,7 +84,8 @@ jobs: echo 'EOF' >> $GITHUB_ENV env: GITHUB_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }} - - if: github.event_name == 'pull_request' + - if: github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' && + github.actor != 'dependabot' name: Comment on PR with Details of Schema Check uses: thollander/actions-comment-pull-request@24bffb9b452ba05a4f3f77933840a6a841d1b32b # v3.0.1 with: diff --git a/native-provider-ci/providers/kubernetes-ingress-nginx/repo/.github/workflows/run-acceptance-tests.yml b/native-provider-ci/providers/kubernetes-ingress-nginx/repo/.github/workflows/run-acceptance-tests.yml index d9f4bda7e7..5bb7f956d7 100644 --- a/native-provider-ci/providers/kubernetes-ingress-nginx/repo/.github/workflows/run-acceptance-tests.yml +++ b/native-provider-ci/providers/kubernetes-ingress-nginx/repo/.github/workflows/run-acceptance-tests.yml @@ -107,7 +107,8 @@ jobs: echo 'EOF' >> $GITHUB_ENV env: GITHUB_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }} - - if: github.event_name == 'pull_request' + - if: github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' && + github.actor != 'dependabot' name: Comment on PR with Details of Schema Check uses: thollander/actions-comment-pull-request@24bffb9b452ba05a4f3f77933840a6a841d1b32b # v3.0.1 with: diff --git a/native-provider-ci/providers/kubernetes/repo/.github/workflows/build.yml b/native-provider-ci/providers/kubernetes/repo/.github/workflows/build.yml index c622da3e80..740a3a8298 100644 --- a/native-provider-ci/providers/kubernetes/repo/.github/workflows/build.yml +++ b/native-provider-ci/providers/kubernetes/repo/.github/workflows/build.yml @@ -96,7 +96,8 @@ jobs: echo 'EOF' >> $GITHUB_ENV env: GITHUB_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }} - - if: github.event_name == 'pull_request' + - if: github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' && + github.actor != 'dependabot' name: Comment on PR with Details of Schema Check uses: thollander/actions-comment-pull-request@24bffb9b452ba05a4f3f77933840a6a841d1b32b # v3.0.1 with: diff --git a/native-provider-ci/providers/kubernetes/repo/.github/workflows/prerelease.yml b/native-provider-ci/providers/kubernetes/repo/.github/workflows/prerelease.yml index ed1f1665cb..56b1ed2223 100644 --- a/native-provider-ci/providers/kubernetes/repo/.github/workflows/prerelease.yml +++ b/native-provider-ci/providers/kubernetes/repo/.github/workflows/prerelease.yml @@ -88,7 +88,8 @@ jobs: echo 'EOF' >> $GITHUB_ENV env: GITHUB_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }} - - if: github.event_name == 'pull_request' + - if: github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' && + github.actor != 'dependabot' name: Comment on PR with Details of Schema Check uses: thollander/actions-comment-pull-request@24bffb9b452ba05a4f3f77933840a6a841d1b32b # v3.0.1 with: diff --git a/native-provider-ci/providers/kubernetes/repo/.github/workflows/release.yml b/native-provider-ci/providers/kubernetes/repo/.github/workflows/release.yml index 28a60e9535..15250944ec 100644 --- a/native-provider-ci/providers/kubernetes/repo/.github/workflows/release.yml +++ b/native-provider-ci/providers/kubernetes/repo/.github/workflows/release.yml @@ -88,7 +88,8 @@ jobs: echo 'EOF' >> $GITHUB_ENV env: GITHUB_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }} - - if: github.event_name == 'pull_request' + - if: github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' && + github.actor != 'dependabot' name: Comment on PR with Details of Schema Check uses: thollander/actions-comment-pull-request@24bffb9b452ba05a4f3f77933840a6a841d1b32b # v3.0.1 with: diff --git a/native-provider-ci/providers/kubernetes/repo/.github/workflows/run-acceptance-tests.yml b/native-provider-ci/providers/kubernetes/repo/.github/workflows/run-acceptance-tests.yml index 1b81e4a0ce..46703267c4 100644 --- a/native-provider-ci/providers/kubernetes/repo/.github/workflows/run-acceptance-tests.yml +++ b/native-provider-ci/providers/kubernetes/repo/.github/workflows/run-acceptance-tests.yml @@ -111,7 +111,8 @@ jobs: echo 'EOF' >> $GITHUB_ENV env: GITHUB_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }} - - if: github.event_name == 'pull_request' + - if: github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' && + github.actor != 'dependabot' name: Comment on PR with Details of Schema Check uses: thollander/actions-comment-pull-request@24bffb9b452ba05a4f3f77933840a6a841d1b32b # v3.0.1 with: diff --git a/native-provider-ci/providers/pulumistack/repo/.github/workflows/build.yml b/native-provider-ci/providers/pulumistack/repo/.github/workflows/build.yml index 01a3d9a08e..b843e10295 100644 --- a/native-provider-ci/providers/pulumistack/repo/.github/workflows/build.yml +++ b/native-provider-ci/providers/pulumistack/repo/.github/workflows/build.yml @@ -81,7 +81,8 @@ jobs: echo 'EOF' >> $GITHUB_ENV env: GITHUB_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }} - - if: github.event_name == 'pull_request' + - if: github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' && + github.actor != 'dependabot' name: Comment on PR with Details of Schema Check uses: thollander/actions-comment-pull-request@24bffb9b452ba05a4f3f77933840a6a841d1b32b # v3.0.1 with: diff --git a/native-provider-ci/providers/pulumistack/repo/.github/workflows/prerelease.yml b/native-provider-ci/providers/pulumistack/repo/.github/workflows/prerelease.yml index 87e325d415..120212a1e4 100644 --- a/native-provider-ci/providers/pulumistack/repo/.github/workflows/prerelease.yml +++ b/native-provider-ci/providers/pulumistack/repo/.github/workflows/prerelease.yml @@ -73,7 +73,8 @@ jobs: echo 'EOF' >> $GITHUB_ENV env: GITHUB_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }} - - if: github.event_name == 'pull_request' + - if: github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' && + github.actor != 'dependabot' name: Comment on PR with Details of Schema Check uses: thollander/actions-comment-pull-request@24bffb9b452ba05a4f3f77933840a6a841d1b32b # v3.0.1 with: diff --git a/native-provider-ci/providers/pulumistack/repo/.github/workflows/release.yml b/native-provider-ci/providers/pulumistack/repo/.github/workflows/release.yml index be4b83922b..ed99b10bdd 100644 --- a/native-provider-ci/providers/pulumistack/repo/.github/workflows/release.yml +++ b/native-provider-ci/providers/pulumistack/repo/.github/workflows/release.yml @@ -73,7 +73,8 @@ jobs: echo 'EOF' >> $GITHUB_ENV env: GITHUB_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }} - - if: github.event_name == 'pull_request' + - if: github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' && + github.actor != 'dependabot' name: Comment on PR with Details of Schema Check uses: thollander/actions-comment-pull-request@24bffb9b452ba05a4f3f77933840a6a841d1b32b # v3.0.1 with: diff --git a/native-provider-ci/providers/pulumistack/repo/.github/workflows/run-acceptance-tests.yml b/native-provider-ci/providers/pulumistack/repo/.github/workflows/run-acceptance-tests.yml index 573a5ca365..a013ac06d2 100644 --- a/native-provider-ci/providers/pulumistack/repo/.github/workflows/run-acceptance-tests.yml +++ b/native-provider-ci/providers/pulumistack/repo/.github/workflows/run-acceptance-tests.yml @@ -96,7 +96,8 @@ jobs: echo 'EOF' >> $GITHUB_ENV env: GITHUB_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }} - - if: github.event_name == 'pull_request' + - if: github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' && + github.actor != 'dependabot' name: Comment on PR with Details of Schema Check uses: thollander/actions-comment-pull-request@24bffb9b452ba05a4f3f77933840a6a841d1b32b # v3.0.1 with: diff --git a/native-provider-ci/src/steps.ts b/native-provider-ci/src/steps.ts index 6eddf742b5..e638c56aa6 100644 --- a/native-provider-ci/src/steps.ts +++ b/native-provider-ci/src/steps.ts @@ -654,7 +654,7 @@ export function CommentSchemaChangesOnPR(provider: string): Step { return {}; } return { - if: "github.event_name == 'pull_request'", + if: "github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' && github.actor != 'dependabot'", name: "Comment on PR with Details of Schema Check", uses: action.prComment, with: {