feature: migrate to self host actions
This commit is contained in:
parent
d811d16d24
commit
bad8fa89a3
@ -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@<latest_tag>
|
||||
with:
|
||||
@ -37,12 +37,12 @@ jobs:
|
||||
|
||||
# ... do some CI habitual stuff
|
||||
|
||||
- uses: RouxAntoine/auto-changie@<latest_tag>
|
||||
- uses: https://antoine-roux.tk/projects/actions/auto-changie@<latest_tag>
|
||||
|
||||
- name: Push changelog
|
||||
uses: stefanzweifel/git-auto-commit-action@<latest_tag>
|
||||
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).
|
||||
|
Loading…
Reference in New Issue
Block a user