Disabling comments from netlify actions

This commit is contained in:
filipenevola
2021-10-19 18:07:54 -04:00
parent 901069291d
commit 4b6717bc85
4 changed files with 13 additions and 1 deletions

View File

@@ -30,6 +30,8 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }}
deploy-message: "Deploy from GitHub Actions"
netlify-config-path: './docs/netlify.toml'
enable-pull-request-comment: false
enable-commit-comment: false
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_GUIDE_SITE_ID }}

View File

@@ -28,6 +28,8 @@ jobs:
deploy-message: "Deploy from GitHub Actions"
netlify-config-path: './docs/netlify.toml'
alias: deploy-preview-${{ github.event.number }}
enable-pull-request-comment: false
enable-commit-comment: false
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_DOCS_SITE_ID }}
@@ -56,6 +58,8 @@ jobs:
deploy-message: "Deploy from GitHub Actions"
netlify-config-path: './docs/netlify.toml'
alias: ${{ github.head_ref }}
enable-pull-request-comment: false
enable-commit-comment: false
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_DOCS_SITE_ID }}

View File

@@ -47,6 +47,8 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }}
deploy-message: "Deploy from GitHub Actions"
netlify-config-path: './guide/netlify.toml'
enable-pull-request-comment: false
enable-commit-comment: false
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_GUIDE_SITE_ID }}

View File

@@ -28,6 +28,8 @@ jobs:
deploy-message: "Deploy from GitHub Actions"
netlify-config-path: './guide/netlify.toml'
alias: deploy-preview-${{ github.event.number }}
enable-pull-request-comment: false
enable-commit-comment: false
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_GUIDE_SITE_ID }}
@@ -56,7 +58,9 @@ jobs:
deploy-message: "Deploy from GitHub Actions"
netlify-config-path: './guide/netlify.toml'
alias: ${{ github.head_ref }}
enable-pull-request-comment: false
enable-commit-comment: false
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_GUIDE_SITE_ID }}