Create a GH action to automatically notify .env changes #655
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR introduces a new workflow that runs when there is a PR that gets merged into develop that makes a change to the
example.env
file.It works via a slack webhook url that triggers the automated Slack workflow (this link can only be used within Slack) which posts the following message to the candig-dev channel.
![Screenshot 2024-06-18 at 7 52 37 PM](https://private-user-images.githubusercontent.com/13007987/340896552-fee68a02-6ce4-4fde-a666-353b58274742.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MzkyMjA5NzYsIm5iZiI6MTczOTIyMDY3NiwicGF0aCI6Ii8xMzAwNzk4Ny8zNDA4OTY1NTItZmVlNjhhMDItNmNlNC00ZmRlLWE2NjYtMzUzYjU4Mjc0NzQyLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTAlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjEwVDIwNTExNlomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTVhM2Q3ODQ5NTFhMjQwNTcxYzVjZDdiMjI4ZTE5ZmEyMjAzNDRjYWRiZTk5NmFlYTM2NGVmMTRiYjg1NDhiMWMmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.dtaEK5fhpod_ikrZK7N6-VO0OSxU4wmFRpxM8wHR6Vw)
Any edits to the message that gets posted need to be made within Slack to the workflow itself.
Was made following the slack-github-action workflow builder guide. The Slack Webhook URL is saved as a secret in this repo so the github action is able to use it. It is possible to customise it further with a payload but went with this simple version as first version.