Skip to content

Commit

Permalink
ci: shallow lock error
Browse files Browse the repository at this point in the history
Signed-off-by: Francesco Canovai <[email protected]>
  • Loading branch information
fcanovai committed Jun 27, 2024
1 parent bc2fa7a commit 84c7832
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/continuous-delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
ci:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
14 changes: 10 additions & 4 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,14 @@ tasks:
env:
# renovate: datasource=git-refs depName=commitlint lookupName=https://github.com/cloudnative-pg/daggerverse currentValue=main
DAGGER_COMMITLINT_SHA: f09d41cb90701db446048a9f20eb03495e50f727
FROM: 'origin/main'
TO: '{{ printf "origin/%v" .GITHUB_HEAD_REF}}'
cmds:
- dagger -s call -m github.com/cloudnative-pg/daggerverse/commitlint@${DAGGER_COMMITLINT_SHA} lint --source . --args "--from=origin/main" stdout
- git branch -a
- env
- echo "${FROM}..${TO}"
- npx git-raw-commits --from ${FROM} --to ${TO}
- dagger -s call -m github.com/cloudnative-pg/daggerverse/commitlint@${DAGGER_COMMITLINT_SHA} lint --source . --args "--from=${FROM}" --args "--to=${TO}" stdout

uncommitted:
desc: Check for uncommitted changes
Expand All @@ -72,9 +78,9 @@ tasks:

ci:
desc: Run the CI pipeline
deps:
- commitlint
- uncommitted
cmds:
- task: commitlint
- task: uncommitted

clean:
desc: Remove autogenerated artifacts
Expand Down

0 comments on commit 84c7832

Please sign in to comment.