Add permission-check before slack notify
This commit is contained in:
parent
83c1843af3
commit
95a9c92769
10
.github/workflows/ci.yml
vendored
10
.github/workflows/ci.yml
vendored
@ -310,9 +310,17 @@ jobs:
|
|||||||
needs: [ build_linux, build_macos, build_windows, docs_check ]
|
needs: [ build_linux, build_macos, build_windows, docs_check ]
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
steps:
|
steps:
|
||||||
|
- name: Check user permission
|
||||||
|
id: check
|
||||||
|
uses: scherermichael-oss/action-has-permission@1.0.6
|
||||||
|
with:
|
||||||
|
required-permission: write
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Slack Notification
|
- name: Slack Notification
|
||||||
uses: lazy-actions/slatify@v3.0.0
|
uses: lazy-actions/slatify@v3.0.0
|
||||||
if: always() && ( github.event_name != 'pull_request' || github.event.pull_request.head.repo.fork == false)
|
if: always() && steps.check.outputs.has-permission && ( github.event_name != 'pull_request' || github.event.pull_request.head.repo.fork == false)
|
||||||
with:
|
with:
|
||||||
type: ${{ job.status }}
|
type: ${{ job.status }}
|
||||||
job_name: '*Freqtrade CI*'
|
job_name: '*Freqtrade CI*'
|
||||||
|
Loading…
Reference in New Issue
Block a user