chore: update fullsend shim workflow#3
Conversation
51dfcbf to
c413520
Compare
ReviewFindingsHigh
Low
Info
Previous runReviewFindingsHigh
Info
Previous run (2)ReviewFindingsHigh
Info
Previous run (3)ReviewFindingsHigh
Info
Previous run (4)Review — approveOutcome: approve SummaryRe-review of the same logical change (prior review at The change is a 1-line deletion that syncs the shim with the upstream template. No behavioral change, no security impact, no documentation staleness. Dimensions
Previous run (5)Review — approveOutcome: approve SummaryRe-review of the same logical change (prior review at The change is a 1-line deletion that syncs the shim with the upstream template. No behavioral change, no security impact, no documentation staleness. Dimensions
Previous run (6)Review — approveOutcome: approve SummaryRe-review of the same logical change (prior review at The change is a 1-line deletion that syncs the shim with the upstream template. No behavioral change, no security impact, no documentation staleness. Dimensions
Previous run (7)Review — approveOutcome: approve SummaryRe-review of the same logical change (prior review at The change is a 1-line deletion that syncs the shim with the upstream template. No behavioral change, no security impact, no documentation staleness. Dimensions
Previous run (8)Review — approveOutcome: approve SummaryRe-review of the same logical change (prior review at The change is a 1-line deletion that syncs the shim with the upstream template. No behavioral change, no security impact, no documentation staleness. Dimensions
Previous run (9)Review — approveOutcome: approve SummaryRe-review of the same logical change (prior review at The change is a 1-line deletion that syncs the shim with the upstream template. No behavioral change, no security impact, no documentation staleness. Dimensions
Previous run (10)Review — approveOutcome: approve SummaryRe-review of the same logical change (prior review at The change is a 1-line deletion that syncs the shim with the upstream template. No behavioral change, no security impact, no documentation staleness. Dimensions
Previous run (11)Review — approveOutcome: approve SummaryThis PR removes the explicit The change is a 1-line deletion that syncs the shim with the upstream template. No behavioral change, no security impact, no documentation staleness. Dimensions
|
c413520 to
5b55481
Compare
5b55481 to
a7c40af
Compare
a7c40af to
8a0f112
Compare
8a0f112 to
e096e66
Compare
93e7415 to
1cfd588
Compare
1cfd588 to
6721ac8
Compare
bdc6b08 to
9b3886d
Compare
| with: | ||
| event_action: ${{ github.event.action }} | ||
| secrets: {} | ||
|
|
There was a problem hiding this comment.
[info] code-analysis
The removal of secrets: {} from the dispatch job reusable workflow invocation is a no-op change. In GitHub Actions, omitting the secrets key and passing secrets: {} are functionally equivalent. No correctness, security, or behavioral impact.
9b3886d to
047f40b
Compare
047f40b to
120213d
Compare
| with: | ||
| event_action: ${{ github.event.action }} | ||
| secrets: {} | ||
|
|
There was a problem hiding this comment.
[info] code-analysis
The removal of secrets: {} from the dispatch job's reusable workflow invocation is a no-op change. In GitHub Actions, omitting the secrets key and passing secrets: {} are functionally equivalent — both forward zero secrets to the called workflow. The workflow header comment confirms agents use OIDC tokens, not forwarded secrets. No correctness, security, or behavioral impact.
120213d to
2f8ff10
Compare
00aebe0 to
2dafd1d
Compare
|
🤖 Finished Review · ❌ Failure · Started 6:48 AM UTC · Completed 6:48 AM UTC |
2dafd1d to
7c6911f
Compare
|
🤖 Finished Review · ✅ Success · Started 10:43 PM UTC · Completed 10:49 PM UTC |
| with: | ||
| event_action: ${{ github.event.action }} | ||
| secrets: {} | ||
|
|
There was a problem hiding this comment.
[info] code-analysis
The removal of secrets: {} from the dispatch job reusable workflow invocation is a no-op change. In GitHub Actions, omitting the secrets key and passing secrets: {} are functionally equivalent — both forward zero secrets to the called workflow. The workflow header comment confirms agents use OIDC tokens, not forwarded secrets. No correctness or behavioral impact.
| with: | ||
| event_action: ${{ github.event.action }} | ||
| secrets: {} | ||
|
|
There was a problem hiding this comment.
[info] code-style
Removing secrets: {} eliminates an explicit empty-allowlist annotation. Both forms are functionally identical in GitHub Actions — no secrets are forwarded unless secrets: inherit is used. The explicit form had marginal value as a documentation signal of intent, but this is a style preference, not a security concern.
Update the shim workflow to match the current template in the .fullsend config repo.
7c6911f to
900cdad
Compare
|
🤖 Finished Review · ✅ Success · Started 6:01 PM UTC · Completed 6:09 PM UTC |
| @@ -1,3 +1,5 @@ | |||
| --- | |||
There was a problem hiding this comment.
[low] yaml-formatting
The added YAML document separator (---) is inconsistent with existing workflow files in the repository. collect.yml and holidays.yaml do not use document separators.
| @@ -44,7 +46,6 @@ jobs: | |||
| uses: fullsend-ai/.fullsend/.github/workflows/dispatch.yml@main | |||
| with: | |||
There was a problem hiding this comment.
[info] code-analysis
The removal of secrets: {} is a no-op change. Both forms are functionally equivalent in GitHub Actions.
| @@ -1,3 +1,5 @@ | |||
| --- | |||
| # --- fullsend managed below - do not edit --- | |||
There was a problem hiding this comment.
[info] comment-style
The management barrier comment introduces a new comment pattern not present elsewhere in the repository.
| @@ -44,7 +46,6 @@ jobs: | |||
| uses: fullsend-ai/.fullsend/.github/workflows/dispatch.yml@main | |||
| with: | |||
There was a problem hiding this comment.
[info] code-style
Removing secrets: {} eliminates an explicit empty-allowlist annotation. This is a style preference, not a security concern.
This PR updates the fullsend shim workflow to match the current template in the
.fullsendconfig repo.The shim content has drifted from the template — this brings it back in sync.