Skip to content

Commit

Permalink
Merge pull request #1118 from 0chain/alert-final
Browse files Browse the repository at this point in the history
created config_change_alert.yaml
  • Loading branch information
m-s-a-c committed Apr 1, 2022
2 parents 985d5d8 + e524a58 commit 9e0d908
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/config_change_alert.yaml
@@ -0,0 +1,33 @@
name: config_change_alert

on:
push:
branches:
- staging
pull_request:
branches:
- staging

jobs:
test:
runs-on: docker-builds
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0 # OR "2" -> To retrieve the preceding commit.

- name: Get changed files using defaults
id: changed-files
uses: tj-actions/changed-files@v18.4

- name: Run step when a 0chain.yaml file changes
if: contains(steps.changed-files.outputs.modified_files, 'docker.local/config/0chain.yaml')
run: |
echo "Your 0chain.yaml file has been modified."
curl -X POST -H 'Content-type: application/json' --data '{"text":"Your 0chain.yaml config file has been modified."}' ${{ secrets.CHAT_WEBHOOK_URL }}
- name: Run step when a sc.yaml file changes
if: contains(steps.changed-files.outputs.modified_files, 'docker.local/config/sc.yaml')
run: |
echo "Your sc.yaml file has been modified."
curl -X POST -H 'Content-type: application/json' --data '{"text":"Your sc.yaml config file has been modified."}' ${{ secrets.CHAT_WEBHOOK_URL }}

0 comments on commit 9e0d908

Please sign in to comment.