Skip to content

Commit 22b52e1

Browse files
committed
Retrieve commit ref correctly.
The command `frizbee actions <action>@<tag>` incorrectly retrieves the tag's ref rather than the commit's one. The tag's ref should instead be used to retrieve the details of the tag, which contain the ref of the commit. This change changes `getCheckSumForTag` to lookup the right field using two subsequent call to GitHub. Fixes #206
1 parent 8f2db5c commit 22b52e1

File tree

2 files changed

+30
-13
lines changed

2 files changed

+30
-13
lines changed

pkg/replacer/actions/actions.go

+26-9
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,23 @@ func getCheckSumForTag(ctx context.Context, restIf interfaces.REST, owner, repo,
314314
return "", fmt.Errorf("failed to join path: %w", err)
315315
}
316316

317-
return doGetReference(ctx, restIf, path)
317+
sha, otype, err := doGetReference(ctx, restIf, path)
318+
if err != nil {
319+
return "", err
320+
}
321+
322+
if otype == "commit" {
323+
return sha, nil
324+
}
325+
326+
// assume otype == "tag"
327+
path, err = url.JoinPath("repos", owner, repo, "git", "tags", sha)
328+
if err != nil {
329+
return "", fmt.Errorf("failed to join path: %w", err)
330+
}
331+
332+
sha, _, err = doGetReference(ctx, restIf, path)
333+
return sha, err
318334
}
319335

320336
func getCheckSumForBranch(ctx context.Context, restIf interfaces.REST, owner, repo, branch string) (string, error) {
@@ -323,7 +339,8 @@ func getCheckSumForBranch(ctx context.Context, restIf interfaces.REST, owner, re
323339
return "", fmt.Errorf("failed to join path: %w", err)
324340
}
325341

326-
return doGetReference(ctx, restIf, path)
342+
sha, _, err := doGetReference(ctx, restIf, path)
343+
return sha, err
327344
}
328345

329346
func excludeBranch(excludes []string, branch string) bool {
@@ -337,10 +354,10 @@ func excludeBranch(excludes []string, branch string) bool {
337354
return slices.Contains(excludes, branch)
338355
}
339356

340-
func doGetReference(ctx context.Context, restIf interfaces.REST, path string) (string, error) {
357+
func doGetReference(ctx context.Context, restIf interfaces.REST, path string) (string, string, error) {
341358
req, err := restIf.NewRequest(http.MethodGet, path, nil)
342359
if err != nil {
343-
return "", fmt.Errorf("cannot create REST request: %w", err)
360+
return "", "", fmt.Errorf("cannot create REST request: %w", err)
344361
}
345362

346363
resp, err := restIf.Do(ctx, req)
@@ -352,20 +369,20 @@ func doGetReference(ctx context.Context, restIf interfaces.REST, path string) (s
352369
}
353370

354371
if err != nil && resp.StatusCode != http.StatusNotFound {
355-
return "", fmt.Errorf("failed to do API request: %w", err)
372+
return "", "", fmt.Errorf("failed to do API request: %w", err)
356373
} else if resp.StatusCode == http.StatusNotFound {
357374
// No error, but no tag found
358-
return "", nil
375+
return "", "", nil
359376
}
360377

361378
var t github.Reference
362379
err = json.NewDecoder(resp.Body).Decode(&t)
363380
if err != nil && strings.Contains(err.Error(), "cannot unmarshal array into Go value of type") {
364381
// This is a branch, not a tag
365-
return "", nil
382+
return "", "", nil
366383
} else if err != nil {
367-
return "", fmt.Errorf("canont decode response: %w", err)
384+
return "", "", fmt.Errorf("canont decode response: %w", err)
368385
}
369386

370-
return t.GetObject().GetSHA(), nil
387+
return t.GetObject().GetSHA(), t.GetObject().GetType(), nil
371388
}

pkg/replacer/replacer_test.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -792,7 +792,7 @@ jobs:
792792
steps:
793793
- uses: ./minder/server.yml # this should not be replaced
794794
- uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2
795-
- uses: xt0rted/markdownlint-problem-matcher@c17ca40d1376f60aba7e7d38a8674a3f22f7f5b0 # v1
795+
- uses: xt0rted/markdownlint-problem-matcher@b643b0751c371f357690337d4549221347c0e1bc # v1
796796
- name: "Run Markdown linter"
797797
uses: docker://index.docker.io/avtodev/markdown-lint@sha256:6aeedc2f49138ce7a1cd0adffc1b1c0321b841dc2102408967d9301c031949ee # v1
798798
with:
@@ -905,7 +905,7 @@ jobs:
905905
steps:
906906
- uses: ./minder/server.yml # this should not be replaced
907907
- uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2
908-
- uses: xt0rted/markdownlint-problem-matcher@c17ca40d1376f60aba7e7d38a8674a3f22f7f5b0 # v1
908+
- uses: xt0rted/markdownlint-problem-matcher@b643b0751c371f357690337d4549221347c0e1bc # v1
909909
`,
910910
modified: true,
911911
},
@@ -1398,7 +1398,7 @@ jobs:
13981398
steps:
13991399
- uses: ./minder/server.yml # this should not be replaced
14001400
- uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2
1401-
- uses: xt0rted/markdownlint-problem-matcher@c17ca40d1376f60aba7e7d38a8674a3f22f7f5b0 # v1
1401+
- uses: xt0rted/markdownlint-problem-matcher@b643b0751c371f357690337d4549221347c0e1bc # v1
14021402
`,
14031403
expected: &ListResult{
14041404
Entities: []interfaces.EntityRef{
@@ -1409,7 +1409,7 @@ jobs:
14091409
},
14101410
{
14111411
Name: "xt0rted/markdownlint-problem-matcher",
1412-
Ref: "c17ca40d1376f60aba7e7d38a8674a3f22f7f5b0",
1412+
Ref: "b643b0751c371f357690337d4549221347c0e1bc",
14131413
Type: actions.ReferenceType,
14141414
},
14151415
},

0 commit comments

Comments
 (0)