We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4050f63 commit 80fece8Copy full SHA for 80fece8
1 file changed
.github/workflows/update-platform-branch.yaml
@@ -9,6 +9,10 @@ name: "Update Platform Branch"
9
on:
10
schedule:
11
- cron: "17 0 * * *" # Runs daily at 00:17 UTC
12
+ pull_request:
13
+ branches:
14
+ - main
15
+ - 'release/**'
16
workflow_call:
17
inputs:
18
tag:
@@ -49,7 +53,7 @@ jobs:
49
53
if [ -z "${{ github.event.inputs.tag }}" ]; then
50
54
LATEST_TAG=$(git ls-remote --tags https://github.com/opentdf/platform.git | \
51
55
grep "refs/tags/protocol/go" | \
52
- sed 's|.*/||' | \
56
+ sed 's|refs/tags/||' | \
57
sort -V | \
58
tail -n1)
59
echo "LATEST_TAG=$LATEST_TAG" >> "$GITHUB_ENV"
0 commit comments