From d76d7aafe49eadfc8d388bef38a8d3fb0230041b Mon Sep 17 00:00:00 2001 From: SethCohen Date: Wed, 24 Aug 2022 20:05:42 -0400 Subject: [PATCH] feat: created test action --- .../workflows/{github-release-to-discord.yml => test.yml} | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) rename .github/workflows/{github-release-to-discord.yml => test.yml} (71%) diff --git a/.github/workflows/github-release-to-discord.yml b/.github/workflows/test.yml similarity index 71% rename from .github/workflows/github-release-to-discord.yml rename to .github/workflows/test.yml index 67f0270..2c6eff0 100644 --- a/.github/workflows/github-release-to-discord.yml +++ b/.github/workflows/test.yml @@ -1,7 +1,7 @@ on: release: types: [published] -name: github-release-to-discord +name: test-action jobs: github-release-to-discord: runs-on: ubuntu-latest @@ -9,7 +9,6 @@ jobs: - name: Checkout uses: actions/checkout@v3 - name: Github Releases To Discord - uses: SethCohen/github-release-to-discord@v1.12.0 - id: release + uses: ./ # Uses an action in the root directory with: webhook_url: ${{ secrets.WEBHOOK_URL }} \ No newline at end of file