From 0b7098ba216d4602f513b0ec6584ecb73c27a5bb Mon Sep 17 00:00:00 2001 From: Niklas van Schrick Date: Thu, 7 Dec 2023 20:52:21 +0100 Subject: [PATCH] Rename workflow to ci The pipeline will not only contain storybook jobs in the future. Lets make the workflow more inclusive for possible new jobs like linting or testing. --- .github/workflows/{storybook.yml => ci.yml} | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) rename .github/workflows/{storybook.yml => ci.yml} (90%) diff --git a/.github/workflows/storybook.yml b/.github/workflows/ci.yml similarity index 90% rename from .github/workflows/storybook.yml rename to .github/workflows/ci.yml index 9e18b4bd..62d20224 100644 --- a/.github/workflows/storybook.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,4 @@ -name: Storybook +name: CI on: push: @@ -10,7 +10,7 @@ permissions: pull-requests: write jobs: - storybook: + pipeline: runs-on: ubuntu-latest steps: - uses: Taucher2003/GitLab-Pipeline-Action@1.2.0 @@ -30,7 +30,7 @@ jobs: with: issue-number: ${{ github.event.pull_request.number }} comment-author: 'github-actions[bot]' - body-includes: + body-includes: - name: Create or update comment uses: peter-evans/create-or-update-comment@v3 @@ -39,6 +39,6 @@ jobs: comment-id: ${{ steps.find-comment.outputs.comment-id }} issue-number: ${{ github.event.pull_request.number }} body: | - + ${{ steps.pipeline.outputs.SUMMARY_TEXT }} edit-mode: replace