From bad8fa89a39c0069eb1b01951613deabcc4fce4b Mon Sep 17 00:00:00 2001 From: RouxAntoine Date: Sun, 8 Sep 2024 22:12:08 +0200 Subject: [PATCH] feature: migrate to self host actions --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 88d7ef0..e9aed8b 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ on: jobs: build: - if: "contains(github.event.head_commit.message, 'CI') != true" + if: "contains(github.event.head_commit.message, vars.SKIP_CI_PREFIX) != true" steps: - uses: action/checkout@ with: @@ -37,15 +37,15 @@ jobs: # ... do some CI habitual stuff - - uses: RouxAntoine/auto-changie@ + - uses: https://antoine-roux.tk/projects/actions/auto-changie@ - name: Push changelog uses: stefanzweifel/git-auto-commit-action@ with: - commit_message: "CI: Push updated changelog" + commit_message: "${{ vars.SKIP_CI_PREFIX }} Push updated changelog" ``` This pipeline clone code update changelog with auto-changie and push it to main thanks to [git-auto-commit-action](https://github.com/stefanzweifel/git-auto-commit-action). > Notice the use of `fetch-depth: 0` should be set. -> Indeed without this not all commit are retrieve and auto-changie fail to find all commit updated since previous run. \ No newline at end of file +> Indeed without this not all commit are retrieve and auto-changie fail to find all commit updated since previous run.