From 6e0a86fec380212de386e98565a28791010e22c1 Mon Sep 17 00:00:00 2001 From: Rob van der Leek <5324924+robvanderleek@users.noreply.github.com> Date: Sun, 19 Jan 2025 20:55:25 +0100 Subject: [PATCH] =?UTF-8?q?ci:=20=F0=9F=92=9A=20Release=20to=20manual?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/codelimit.yml | 19 +++++++++++++++++++ .github/workflows/main.yml | 3 --- .github/workflows/release.yml | 9 ++++----- 3 files changed, 23 insertions(+), 8 deletions(-) create mode 100644 .github/workflows/codelimit.yml diff --git a/.github/workflows/codelimit.yml b/.github/workflows/codelimit.yml new file mode 100644 index 0000000..1fceaa3 --- /dev/null +++ b/.github/workflows/codelimit.yml @@ -0,0 +1,19 @@ +name: 'codelimit' + +on: + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + ci: + runs-on: ubuntu-latest + steps: + - name: 'Checkout sources' + uses: actions/checkout@v4 + + - name: 'Run CodeLimit' + uses: getcodelimit/codelimit-action@v1 diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d100a9e..2dda487 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -29,6 +29,3 @@ jobs: - name: "Run tests" run: yarn test - - - name: 'Run CodeLimit' - uses: getcodelimit/codelimit-action@v1 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6c5004e..6d8021f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,8 +1,7 @@ -name: Release -on: - push: - branches: - - main +name: 'release' + +on: [workflow_dispatch] + jobs: release: name: Semantic Release