Pull request: all: temp disable gh notifications

Merge in DNS/adguard-home from temp-disable-notify to master

Squashed commit of the following:

commit c7f1393668e4dfe8681c9ed1c6f2ef45aed9106b
Author: Ainar Garipov <A.Garipov@AdGuard.COM>
Date:   Wed Dec 22 17:07:37 2021 +0300

    all: temp disable gh notifications
This commit is contained in:
Ainar Garipov 2021-12-22 17:11:41 +03:00
parent 2968a65f14
commit 7f55bd8461
2 changed files with 59 additions and 55 deletions

View File

@ -103,30 +103,32 @@
- 'name': 'Run snapshot build' - 'name': 'Run snapshot build'
'run': 'make SIGN=0 VERBOSE=1 build-release build-docker' 'run': 'make SIGN=0 VERBOSE=1 build-release build-docker'
'notify': # TODO(a.garipov): Remove once AWS/Slack are back online.
'needs':
- 'build-release'
# Secrets are not passed to workflows that are triggered by a pull request
# from a fork.
# #
# Use always() to signal to the runner that this job must run even if the # 'notify':
# previous ones failed. # 'needs':
'if': # - 'build-release'
${{ always() && # # Secrets are not passed to workflows that are triggered by a pull request
( # # from a fork.
github.event_name == 'push' || # #
github.event.pull_request.head.repo.full_name == github.repository # # Use always() to signal to the runner that this job must run even if the
) # # previous ones failed.
}} # 'if':
'runs-on': 'ubuntu-latest' # ${{ always() &&
'steps': # (
- 'name': 'Conclusion' # github.event_name == 'push' ||
'uses': 'technote-space/workflow-conclusion-action@v1' # github.event.pull_request.head.repo.full_name == github.repository
- 'name': 'Send Slack notif' # )
'uses': '8398a7/action-slack@v3' # }}
'with': # 'runs-on': 'ubuntu-latest'
'status': '${{ env.WORKFLOW_CONCLUSION }}' # 'steps':
'fields': 'repo, message, commit, author, workflow' # - 'name': 'Conclusion'
'env': # 'uses': 'technote-space/workflow-conclusion-action@v1'
'GITHUB_TOKEN': '${{ secrets.GITHUB_TOKEN }}' # - 'name': 'Send Slack notif'
'SLACK_WEBHOOK_URL': '${{ secrets.SLACK_WEBHOOK_URL }}' # 'uses': '8398a7/action-slack@v3'
# 'with':
# 'status': '${{ env.WORKFLOW_CONCLUSION }}'
# 'fields': 'repo, message, commit, author, workflow'
# 'env':
# 'GITHUB_TOKEN': '${{ secrets.GITHUB_TOKEN }}'
# 'SLACK_WEBHOOK_URL': '${{ secrets.SLACK_WEBHOOK_URL }}'

View File

@ -33,31 +33,33 @@
- 'name': 'Run ESLint' - 'name': 'Run ESLint'
'run': 'npm --prefix="./client" run lint' 'run': 'npm --prefix="./client" run lint'
'notify': # TODO(a.garipov): Remove once AWS/Slack are back online.
'needs':
- 'go-lint'
- 'eslint'
# Secrets are not passed to workflows that are triggered by a pull request
# from a fork.
# #
# Use always() to signal to the runner that this job must run even if the # 'notify':
# previous ones failed. # 'needs':
'if': # - 'go-lint'
${{ always() && # - 'eslint'
( # # Secrets are not passed to workflows that are triggered by a pull request
github.event_name == 'push' || # # from a fork.
github.event.pull_request.head.repo.full_name == github.repository # #
) # # Use always() to signal to the runner that this job must run even if the
}} # # previous ones failed.
'runs-on': 'ubuntu-latest' # 'if':
'steps': # ${{ always() &&
- 'name': 'Conclusion' # (
'uses': 'technote-space/workflow-conclusion-action@v1' # github.event_name == 'push' ||
- 'name': 'Send Slack notif' # github.event.pull_request.head.repo.full_name == github.repository
'uses': '8398a7/action-slack@v3' # )
'with': # }}
'status': '${{ env.WORKFLOW_CONCLUSION }}' # 'runs-on': 'ubuntu-latest'
'fields': 'repo, message, commit, author, workflow' # 'steps':
'env': # - 'name': 'Conclusion'
'GITHUB_TOKEN': '${{ secrets.GITHUB_TOKEN }}' # 'uses': 'technote-space/workflow-conclusion-action@v1'
'SLACK_WEBHOOK_URL': '${{ secrets.SLACK_WEBHOOK_URL }}' # - 'name': 'Send Slack notif'
# 'uses': '8398a7/action-slack@v3'
# 'with':
# 'status': '${{ env.WORKFLOW_CONCLUSION }}'
# 'fields': 'repo, message, commit, author, workflow'
# 'env':
# 'GITHUB_TOKEN': '${{ secrets.GITHUB_TOKEN }}'
# 'SLACK_WEBHOOK_URL': '${{ secrets.SLACK_WEBHOOK_URL }}'