From b428786ec35eda342b797cfdb0e3b62e7c4e0530 Mon Sep 17 00:00:00 2001 From: Sam Chau Date: Tue, 3 Dec 2024 19:29:19 +1030 Subject: [PATCH 1/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1867a9c..1cd62fc 100644 --- a/README.md +++ b/README.md @@ -23,4 +23,4 @@ Contains the latest updates and additions that are pending formal verification. ### Feature Branches -Used for developing and testing new database entries, patterns, or major changes before merging into nightly. These branches follow the naming convention: `feature/description-of-change` +Used for developing and testing new database entries, patterns, or major changes before merging into dev. These branches follow the naming convention: `feature/description-of-change` From 82d5835a5d4b3a51ecb93243910439413603b5ba Mon Sep 17 00:00:00 2001 From: Sam Chau Date: Tue, 17 Dec 2024 17:52:26 +1030 Subject: [PATCH 2/3] feat: add GitHub Actions workflow for notifications --- .github/workflows/notify.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/workflows/notify.yml diff --git a/.github/workflows/notify.yml b/.github/workflows/notify.yml new file mode 100644 index 0000000..8354c88 --- /dev/null +++ b/.github/workflows/notify.yml @@ -0,0 +1,10 @@ +name: Notify +on: + push: + branches: + - "**" +jobs: + notify: + uses: Dictionarry-Hub/parrot/.github/workflows/notify.yml@BRANCH_OR_TAG + secrets: + WEBHOOK_URL: ${{ secrets.WEBHOOK_URL }} From e8ecf5e0dc7dd12a3f056886f0a46827ecb4a765 Mon Sep 17 00:00:00 2001 From: Sam Chau Date: Tue, 17 Dec 2024 17:53:15 +1030 Subject: [PATCH 3/3] fix: update workflow reference to use main branch --- .github/workflows/notify.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/notify.yml b/.github/workflows/notify.yml index 8354c88..3e13b64 100644 --- a/.github/workflows/notify.yml +++ b/.github/workflows/notify.yml @@ -5,6 +5,6 @@ on: - "**" jobs: notify: - uses: Dictionarry-Hub/parrot/.github/workflows/notify.yml@BRANCH_OR_TAG + uses: Dictionarry-Hub/parrot/.github/workflows/notify.yml@main secrets: WEBHOOK_URL: ${{ secrets.WEBHOOK_URL }}