Skip to content

Commit cecdde2

Browse files
committed
[fix]: failing ci due to unpulled changes by previous workflow
Summary: In the previous setup, we had both the release-logger and release-todo workflows running and pushing changes to the repository. Obviously one would finish executing before the other, and the changes would not have been pulled by the incomplete job since it's already past the checkout stage. One way to get around this would be to use the `pull` argument in the 'commit kustomization.yaml to Github' stage. The other option would be to trigger the workflow only if changes are made in specific directories that the workflow is instructed to watch, and skip otherwise.
1 parent 9760ac0 commit cecdde2

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

.github/workflows/release-logger.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ on:
66
- main
77
paths:
88
- ".github/workflows/**"
9-
- "0x3-logger/**"
109

1110
env:
1211
DOCKER_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}

.github/workflows/release-todo.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ on:
55
branches:
66
- main
77
paths:
8-
- ".github/workflows/**"
98
- "project/**"
109

1110
env:

0 commit comments

Comments
 (0)