mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-15 09:58:42 -07:00
Pull request: all: fix github action result reporting
Merge in DNS/adguard-home from fix-gh-action-on-fail to master Squashed commit of the following: commit e8d48ee022772e0741de56dd955103efa27db0f6 Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Mon Dec 7 18:54:14 2020 +0300 all: remove tests commit ecdcea9c3a2ee3adda3aca57c761963678547cb2 Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Mon Dec 7 18:44:47 2020 +0300 all: fix github action result reporting
This commit is contained in:
parent
09b6eba7d9
commit
e4383189a5
13
.github/workflows/build.yml
vendored
13
.github/workflows/build.yml
vendored
@ -121,7 +121,16 @@
|
|||||||
- 'docker'
|
- 'docker'
|
||||||
# Secrets are not passed to workflows that are triggered by a pull request
|
# Secrets are not passed to workflows that are triggered by a pull request
|
||||||
# from a fork.
|
# from a fork.
|
||||||
'if': "${{ 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':
|
||||||
|
${{ always() &&
|
||||||
|
(
|
||||||
|
github.event_name == 'push' ||
|
||||||
|
github.event.pull_request.head.repo.full_name == github.repository
|
||||||
|
)
|
||||||
|
}}
|
||||||
'runs-on': 'ubuntu-latest'
|
'runs-on': 'ubuntu-latest'
|
||||||
'steps':
|
'steps':
|
||||||
- 'name': 'Conclusion'
|
- 'name': 'Conclusion'
|
||||||
@ -130,7 +139,7 @@
|
|||||||
'uses': '8398a7/action-slack@v3'
|
'uses': '8398a7/action-slack@v3'
|
||||||
'with':
|
'with':
|
||||||
'status': '${{ env.WORKFLOW_CONCLUSION }}'
|
'status': '${{ env.WORKFLOW_CONCLUSION }}'
|
||||||
'fields': 'repo, message, commit, author'
|
'fields': 'repo, message, commit, author, job'
|
||||||
'env':
|
'env':
|
||||||
'GITHUB_TOKEN': '${{ secrets.GITHUB_TOKEN }}'
|
'GITHUB_TOKEN': '${{ secrets.GITHUB_TOKEN }}'
|
||||||
'SLACK_WEBHOOK_URL': '${{ secrets.SLACK_WEBHOOK_URL }}'
|
'SLACK_WEBHOOK_URL': '${{ secrets.SLACK_WEBHOOK_URL }}'
|
||||||
|
13
.github/workflows/lint.yml
vendored
13
.github/workflows/lint.yml
vendored
@ -31,7 +31,16 @@
|
|||||||
- 'eslint'
|
- 'eslint'
|
||||||
# Secrets are not passed to workflows that are triggered by a pull request
|
# Secrets are not passed to workflows that are triggered by a pull request
|
||||||
# from a fork.
|
# from a fork.
|
||||||
'if': "${{ 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':
|
||||||
|
${{ always() &&
|
||||||
|
(
|
||||||
|
github.event_name == 'push' ||
|
||||||
|
github.event.pull_request.head.repo.full_name == github.repository
|
||||||
|
)
|
||||||
|
}}
|
||||||
'runs-on': 'ubuntu-latest'
|
'runs-on': 'ubuntu-latest'
|
||||||
'steps':
|
'steps':
|
||||||
- 'name': 'Conclusion'
|
- 'name': 'Conclusion'
|
||||||
@ -40,7 +49,7 @@
|
|||||||
'uses': '8398a7/action-slack@v3'
|
'uses': '8398a7/action-slack@v3'
|
||||||
'with':
|
'with':
|
||||||
'status': '${{ env.WORKFLOW_CONCLUSION }}'
|
'status': '${{ env.WORKFLOW_CONCLUSION }}'
|
||||||
'fields': 'repo, message, commit, author'
|
'fields': 'repo, message, commit, author, job'
|
||||||
'env':
|
'env':
|
||||||
'GITHUB_TOKEN': '${{ secrets.GITHUB_TOKEN }}'
|
'GITHUB_TOKEN': '${{ secrets.GITHUB_TOKEN }}'
|
||||||
'SLACK_WEBHOOK_URL': '${{ secrets.SLACK_WEBHOOK_URL }}'
|
'SLACK_WEBHOOK_URL': '${{ secrets.SLACK_WEBHOOK_URL }}'
|
||||||
|
Loading…
Reference in New Issue
Block a user