Skip to content

Commit

Permalink
chore: Add workflow run timestamp (#24618)
Browse files Browse the repository at this point in the history
Co-authored-by: xneyder <[email protected]>
  • Loading branch information
danielxnj and xneyder authored Aug 27, 2024
1 parent f4497a7 commit 14f4452
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 8 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/container-images-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@ jobs:
"release": "posthog",
"commit": ${{ toJson(github.event.head_commit) }},
"repository": ${{ toJson(github.repository) }},
"labels": ${{ steps.labels.outputs.labels }}
"labels": ${{ steps.labels.outputs.labels }},
"timestamp": "${{ github.event.head_commit.timestamp }}"
}
- name: Check for changes in plugins directory
Expand All @@ -124,7 +125,8 @@ jobs:
"release": "ingestion",
"commit": ${{ toJson(github.event.head_commit) }},
"repository": ${{ toJson(github.repository) }},
"labels": ${{ toJson(steps.labels.outputs.labels) }}
"labels": ${{ toJson(steps.labels.outputs.labels) }},
"timestamp": "${{ github.event.head_commit.timestamp }}"
}
- name: Check for changes that affect batch exports temporal worker
Expand All @@ -149,7 +151,8 @@ jobs:
"release": "temporal-worker",
"commit": ${{ toJson(github.event.head_commit) }},
"repository": ${{ toJson(github.repository) }},
"labels": ${{ steps.labels.outputs.labels }}
"labels": ${{ steps.labels.outputs.labels }},
"timestamp": "${{ github.event.head_commit.timestamp }}"
}
- name: Check for changes that affect general purpose temporal worker
Expand All @@ -174,7 +177,8 @@ jobs:
"release": "temporal-worker-general-purpose",
"commit": ${{ toJson(github.event.head_commit) }},
"repository": ${{ toJson(github.repository) }},
"labels": ${{ steps.labels.outputs.labels }}
"labels": ${{ steps.labels.outputs.labels }},
"timestamp": "${{ github.event.head_commit.timestamp }}"
}
- name: Check for changes that affect data warehouse temporal worker
Expand All @@ -199,5 +203,6 @@ jobs:
"release": "temporal-worker-data-warehouse",
"commit": ${{ toJson(github.event.head_commit) }},
"repository": ${{ toJson(github.repository) }},
"labels": ${{ steps.labels.outputs.labels }}
"labels": ${{ steps.labels.outputs.labels }},
"timestamp": "${{ github.event.head_commit.timestamp }}"
}
3 changes: 2 additions & 1 deletion .github/workflows/livestream-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,5 +84,6 @@ jobs:
},
"release": "livestream",
"commit": ${{ toJson(github.event.head_commit) }},
"repository": ${{ toJson(github.repository) }}
"repository": ${{ toJson(github.repository) }},
"timestamp": "${{ github.event.head_commit.timestamp }}"
}
3 changes: 2 additions & 1 deletion .github/workflows/rust-docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,5 +124,6 @@ jobs:
"release": "capture-replay",
"commit": ${{ toJson(github.event.head_commit) }},
"repository": ${{ toJson(github.repository) }},
"labels": []
"labels": [],
"timestamp": "${{ github.event.head_commit.timestamp }}"
}
3 changes: 2 additions & 1 deletion .github/workflows/vector-docker-build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,5 +101,6 @@ jobs:
"release": "replay-capture-vector",
"commit": ${{ toJson(github.event.head_commit) }},
"repository": ${{ toJson(github.repository) }},
"labels": []
"labels": [],
"timestamp": "${{ github.event.head_commit.timestamp }}"
}

0 comments on commit 14f4452

Please sign in to comment.