Skip to content

Commit

Permalink
Create slack-notify,yaml (#655)
Browse files Browse the repository at this point in the history
  • Loading branch information
mshadbolt authored and daisieh committed Jul 16, 2024
1 parent 8e89806 commit 3955fcb
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/slack-notify,yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Slack Notify on example.env Update

on:
pull_request:
branches:
- develop
types:
- closed
paths:
- "etc/env/example.env"

jobs:
notify-slack:
name: Slack notify
runs-on: ubuntu-latest
if: github.event.pull_request.merged == true
steps:
- name: post to slack
id: slack
uses: slackapi/[email protected]
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}

0 comments on commit 3955fcb

Please sign in to comment.