feat: made it so that format and increment can be run subsequently after each other without conflicts
This commit is contained in:
parent
456a31bd83
commit
ab02b32c18
2 changed files with 8 additions and 0 deletions
4
.github/workflows/format.yml
vendored
4
.github/workflows/format.yml
vendored
|
|
@ -25,6 +25,10 @@ jobs:
|
|||
steps:
|
||||
- name: checkout code
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- name: fetch latest commit
|
||||
run: git pull origin "$(git rev-parse --abbrev-ref HEAD)"
|
||||
- name: set up csharp
|
||||
if: inputs.language == 'csharp'
|
||||
uses: c4patino/actions/.github/actions/setup-csharp@main
|
||||
|
|
|
|||
4
.github/workflows/increment.yml
vendored
4
.github/workflows/increment.yml
vendored
|
|
@ -17,6 +17,10 @@ jobs:
|
|||
steps:
|
||||
- name: checkout code
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- name: fetch latest commit
|
||||
run: git pull origin "$(git rev-parse --abbrev-ref HEAD)"
|
||||
- name: set up js
|
||||
if: inputs.language == 'js'
|
||||
uses: c4patino/actions/.github/actions/setup-js@main
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue