Skip to content

Commit 51b616d

Browse files
committed
Add a fake staging for presubmit
1 parent a067c24 commit 51b616d

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

.github/workflows/presubmit.yml

+7
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,13 @@ env:
2323

2424

2525
jobs:
26+
# fake staging for merge-queue only check.
27+
# https://github.com/orgs/community/discussions/103114#discussioncomment-8359045
28+
Staging:
29+
runs-on: ubuntu-latest
30+
steps:
31+
- name: Pass
32+
run: true
2633
Presubmit:
2734
concurrency:
2835
# > The ref given is fully-formed, meaning that for branches the format

ts/pulumi/zemn.me/api/cmd/api/BUILD.bazel

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ go_library(
1212
name = "api_lib",
1313
srcs = [
1414
"api.gen.go",
15+
"authorizers.go",
1516
"callbox.go",
1617
"callbox_number.go",
1718
"main.go",
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1+
package main
12

3+
import "net/http"
24

35
func (Server) GetCallboxAuthorizers(w http.ResponseWriter, rq *http.Request) {
4-
56
}
67

78
func (Server) PatchCallboxAuthorizers(w http.ResponseWriter, rq *http.Request) {
8-
99
}

0 commit comments

Comments
 (0)