Skip to content

Commit

Permalink
try again
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelneale committed Mar 27, 2024
1 parent 8d1fafd commit 0e7bc23
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/autofmt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
- name: Push changes
if: steps.git-check.outputs.modified == 'true'
run: |
git config --global user.email "bot@tbd.email"
git config --global user.name "format-bot"
git config --global user.email "formatter@tbd.email"
git config --global user.name "format"
git remote set-url origin https://x-access-token:${{ secrets.FTL_AUTOFMT_TOKEN }}@github.com/${{ github.repository }}
git commit -am "Automated formatting by bot"
git push
12 changes: 6 additions & 6 deletions go-runtime/ftl/call.go
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
package ftl

import (
"context"
"fmt"
"reflect"
"runtime"
"strings"

"connectrpc.com/connect"

ftlv1 "github.com/TBD54566975/ftl/backend/protos/xyz/block/ftl/v1"
Expand All @@ -15,6 +9,12 @@ import (
"github.com/TBD54566975/ftl/backend/schema/strcase"
"github.com/TBD54566975/ftl/go-runtime/encoding"
"github.com/TBD54566975/ftl/internal/rpc"

"context"
"fmt"
"reflect"
"runtime"
"strings"
)

func call[Req, Resp any](ctx context.Context, callee *schemapb.Ref, req Req) (resp Resp, err error) {
Expand Down

0 comments on commit 0e7bc23

Please sign in to comment.