feat: made it so that format and increment can be run subsequently after each other without conflicts

This commit is contained in:
Ceferino Patino 2025-06-24 16:19:47 -05:00
commit ab02b32c18
Signed by: c4patino
SSH key fingerprint: SHA256:9fQ9TsujGrdNNi76mnsu63v7dS5JOmHRZEqBOl49OR8
2 changed files with 8 additions and 0 deletions

View file

@ -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

View file

@ -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