From edf414c64b626d715f525397cfbcb9dc5635e7d0 Mon Sep 17 00:00:00 2001 From: dusmartijngames <26456798+dusmartijngames@users.noreply.github.com> Date: Mon, 24 Oct 2022 17:15:18 +0200 Subject: [PATCH 1/3] Update action.yml --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 75fbb69..e59370b 100644 --- a/action.yml +++ b/action.yml @@ -33,8 +33,8 @@ inputs: description: URL to png of discord avatar to use. Default is the GitHub monochrome mark cat logo. required: false runs: - using: 'node12' + using: 'node16' main: 'index.js' branding: color: orange - icon: alert-triangle \ No newline at end of file + icon: alert-triangle From 3c0c7937e16501dece2cd797f77373428959f42b Mon Sep 17 00:00:00 2001 From: dusmartijngames <26456798+dusmartijngames@users.noreply.github.com> Date: Mon, 24 Oct 2022 17:20:09 +0200 Subject: [PATCH 2/3] Update test.yml --- .github/workflows/test.yml | 42 +++++++++++++++++++------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3774be6..3a0e728 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -6,25 +6,25 @@ jobs: name: Windows Test Job steps: - name: Windows Test Info - uses: rjstone/discord-webhook-notify@v1 + uses: dusmartijngames/discord-webhook-notify@master with: severity: info details: Test succeeded. webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} - name: Windows Test Warn - uses: rjstone/discord-webhook-notify@v1 + uses: dusmartijngames/discord-webhook-notify@master with: severity: warn details: Test warning. webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} - name: Windows Test Error - uses: rjstone/discord-webhook-notify@v1 + uses: dusmartijngames/discord-webhook-notify@master with: severity: error details: Test error. webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} - name: Windows Test Custom - uses: rjstone/discord-webhook-notify@v1 + uses: dusmartijngames/discord-webhook-notify@master with: severity: info username: CustomUsername @@ -36,19 +36,19 @@ jobs: text: This is where text goes. webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} - name: Windows Test Success - uses: rjstone/discord-webhook-notify@v1 + uses: dusmartijngames/discord-webhook-notify@master if: success() with: severity: info webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} - name: Windows Test Failure - uses: rjstone/discord-webhook-notify@v1 + uses: dusmartijngames/discord-webhook-notify@master if: failure() with: severity: error webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} - name: Windows Test Cancelled - uses: rjstone/discord-webhook-notify@v1 + uses: dusmartijngames/discord-webhook-notify@master if: cancelled() with: severity: warn @@ -58,25 +58,25 @@ jobs: name: Linux Test Job steps: - name: Linux Test Info - uses: rjstone/discord-webhook-notify@v1 + uses: dusmartijngames/discord-webhook-notify@master with: severity: info details: Test succeeded. webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} - name: Linux Test Warn - uses: rjstone/discord-webhook-notify@v1 + uses: dusmartijngames/discord-webhook-notify@master with: severity: warn details: Test warning. webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} - name: Linux Test Error - uses: rjstone/discord-webhook-notify@v1 + uses: dusmartijngames/discord-webhook-notify@master with: severity: error details: Test error. webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} - name: Linux Test Custom - uses: rjstone/discord-webhook-notify@v1 + uses: dusmartijngames/discord-webhook-notify@master with: severity: info username: CustomUsername @@ -88,19 +88,19 @@ jobs: text: This is where text goes. webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} - name: Linux Test Success - uses: rjstone/discord-webhook-notify@v1 + uses: dusmartijngames/discord-webhook-notify@master if: success() with: severity: info webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} - name: Linux Test Failure - uses: rjstone/discord-webhook-notify@v1 + uses: dusmartijngames/discord-webhook-notify@master if: failure() with: severity: error webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} - name: Linux Test Cancelled - uses: rjstone/discord-webhook-notify@v1 + uses: dusmartijngames/discord-webhook-notify@master if: cancelled() with: severity: warn @@ -110,25 +110,25 @@ jobs: name: MacOS Test Job steps: - name: MacOS Test Info - uses: rjstone/discord-webhook-notify@v1 + uses: dusmartijngames/discord-webhook-notify@master with: severity: info details: Test succeeded. webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} - name: MacOS Test Warn - uses: rjstone/discord-webhook-notify@v1 + uses: dusmartijngames/discord-webhook-notify@master with: severity: warn details: Test warning. webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} - name: MacOS Test Error - uses: rjstone/discord-webhook-notify@v1 + uses: dusmartijngames/discord-webhook-notify@master with: severity: error details: Test error. webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} - name: MacOS Test Custom - uses: rjstone/discord-webhook-notify@v1 + uses: dusmartijngames/discord-webhook-notify@master with: severity: info username: CustomUsername @@ -140,19 +140,19 @@ jobs: text: This is where text goes. webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} - name: MacOS Test Success - uses: rjstone/discord-webhook-notify@v1 + uses: dusmartijngames/discord-webhook-notify@master if: success() with: severity: info webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} - name: MacOS Test Failure - uses: rjstone/discord-webhook-notify@v1 + uses: dusmartijngames/discord-webhook-notify@master if: failure() with: severity: error webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} - name: MacOS Test Cancelled - uses: rjstone/discord-webhook-notify@v1 + uses: dusmartijngames/discord-webhook-notify@master if: cancelled() with: severity: warn From 332291e341a28303b52ef1641db278d71aff6f6b Mon Sep 17 00:00:00 2001 From: dusmartijngames <26456798+dusmartijngames@users.noreply.github.com> Date: Mon, 24 Oct 2022 17:24:33 +0200 Subject: [PATCH 3/3] Update test.yml --- .github/workflows/test.yml | 42 +++++++++++++++++++------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3a0e728..3774be6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -6,25 +6,25 @@ jobs: name: Windows Test Job steps: - name: Windows Test Info - uses: dusmartijngames/discord-webhook-notify@master + uses: rjstone/discord-webhook-notify@v1 with: severity: info details: Test succeeded. webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} - name: Windows Test Warn - uses: dusmartijngames/discord-webhook-notify@master + uses: rjstone/discord-webhook-notify@v1 with: severity: warn details: Test warning. webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} - name: Windows Test Error - uses: dusmartijngames/discord-webhook-notify@master + uses: rjstone/discord-webhook-notify@v1 with: severity: error details: Test error. webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} - name: Windows Test Custom - uses: dusmartijngames/discord-webhook-notify@master + uses: rjstone/discord-webhook-notify@v1 with: severity: info username: CustomUsername @@ -36,19 +36,19 @@ jobs: text: This is where text goes. webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} - name: Windows Test Success - uses: dusmartijngames/discord-webhook-notify@master + uses: rjstone/discord-webhook-notify@v1 if: success() with: severity: info webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} - name: Windows Test Failure - uses: dusmartijngames/discord-webhook-notify@master + uses: rjstone/discord-webhook-notify@v1 if: failure() with: severity: error webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} - name: Windows Test Cancelled - uses: dusmartijngames/discord-webhook-notify@master + uses: rjstone/discord-webhook-notify@v1 if: cancelled() with: severity: warn @@ -58,25 +58,25 @@ jobs: name: Linux Test Job steps: - name: Linux Test Info - uses: dusmartijngames/discord-webhook-notify@master + uses: rjstone/discord-webhook-notify@v1 with: severity: info details: Test succeeded. webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} - name: Linux Test Warn - uses: dusmartijngames/discord-webhook-notify@master + uses: rjstone/discord-webhook-notify@v1 with: severity: warn details: Test warning. webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} - name: Linux Test Error - uses: dusmartijngames/discord-webhook-notify@master + uses: rjstone/discord-webhook-notify@v1 with: severity: error details: Test error. webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} - name: Linux Test Custom - uses: dusmartijngames/discord-webhook-notify@master + uses: rjstone/discord-webhook-notify@v1 with: severity: info username: CustomUsername @@ -88,19 +88,19 @@ jobs: text: This is where text goes. webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} - name: Linux Test Success - uses: dusmartijngames/discord-webhook-notify@master + uses: rjstone/discord-webhook-notify@v1 if: success() with: severity: info webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} - name: Linux Test Failure - uses: dusmartijngames/discord-webhook-notify@master + uses: rjstone/discord-webhook-notify@v1 if: failure() with: severity: error webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} - name: Linux Test Cancelled - uses: dusmartijngames/discord-webhook-notify@master + uses: rjstone/discord-webhook-notify@v1 if: cancelled() with: severity: warn @@ -110,25 +110,25 @@ jobs: name: MacOS Test Job steps: - name: MacOS Test Info - uses: dusmartijngames/discord-webhook-notify@master + uses: rjstone/discord-webhook-notify@v1 with: severity: info details: Test succeeded. webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} - name: MacOS Test Warn - uses: dusmartijngames/discord-webhook-notify@master + uses: rjstone/discord-webhook-notify@v1 with: severity: warn details: Test warning. webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} - name: MacOS Test Error - uses: dusmartijngames/discord-webhook-notify@master + uses: rjstone/discord-webhook-notify@v1 with: severity: error details: Test error. webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} - name: MacOS Test Custom - uses: dusmartijngames/discord-webhook-notify@master + uses: rjstone/discord-webhook-notify@v1 with: severity: info username: CustomUsername @@ -140,19 +140,19 @@ jobs: text: This is where text goes. webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} - name: MacOS Test Success - uses: dusmartijngames/discord-webhook-notify@master + uses: rjstone/discord-webhook-notify@v1 if: success() with: severity: info webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} - name: MacOS Test Failure - uses: dusmartijngames/discord-webhook-notify@master + uses: rjstone/discord-webhook-notify@v1 if: failure() with: severity: error webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} - name: MacOS Test Cancelled - uses: dusmartijngames/discord-webhook-notify@master + uses: rjstone/discord-webhook-notify@v1 if: cancelled() with: severity: warn