From 34a812fd81e3dfab2450d7b185c3629932fb335a Mon Sep 17 00:00:00 2001 From: HAHWUL Date: Tue, 23 Jul 2024 23:49:33 +0900 Subject: [PATCH] chore: Rename deploy.yml to cd.yml and update workflow names and descriptions --- .github/workflows/{deploy.yml => cd.yml} | 11 ++++++++++- .github/workflows/contributors.yml | 20 -------------------- 2 files changed, 10 insertions(+), 21 deletions(-) rename .github/workflows/{deploy.yml => cd.yml} (76%) delete mode 100644 .github/workflows/contributors.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/cd.yml similarity index 76% rename from .github/workflows/deploy.yml rename to .github/workflows/cd.yml index d8ef27c..2652111 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/cd.yml @@ -1,11 +1,20 @@ --- -name: Deploy +name: Continuous Deployment on: push: branches: [main] workflow_dispatch: jobs: + Contributors: + runs-on: ubuntu-latest + steps: + - uses: wow-actions/contributors-list@v1 + with: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + round: true + svgPath: images/CONTRIBUTORS.svg Deploy: + needs: Contributors runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/contributors.yml b/.github/workflows/contributors.yml deleted file mode 100644 index 9b9c328..0000000 --- a/.github/workflows/contributors.yml +++ /dev/null @@ -1,20 +0,0 @@ ---- -name: Contributors -on: - push: - branches: [main] - workflow_dispatch: - inputs: - logLevel: - description: manual run - required: false - default: '' -jobs: - contributors: - runs-on: ubuntu-latest - steps: - - uses: wow-actions/contributors-list@v1 - with: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - round: true - svgPath: images/CONTRIBUTORS.svg