Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Go Httpbin
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Jira
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Container registry
Monitor
Service Desk
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OSS
Nix
Go Httpbin
Commits
e2bb3ece
Unverified
Commit
e2bb3ece
authored
3 years ago
by
Will McCutchen
Committed by
GitHub
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix lingering references to the old master branch (#69)
parent
41b5245f
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.github/workflows/continuous_delivery.yaml
+5
-5
5 additions, 5 deletions
.github/workflows/continuous_delivery.yaml
.github/workflows/lint.yaml
+2
-2
2 additions, 2 deletions
.github/workflows/lint.yaml
README.md
+2
-2
2 additions, 2 deletions
README.md
with
9 additions
and
9 deletions
.github/workflows/continuous_delivery.yaml
+
5
−
5
View file @
e2bb3ece
...
...
@@ -2,16 +2,16 @@
# autonomous deploys to production on merge.
name
:
CD
# Translated: "Execute this workflow on pushes to ma
ster
OR on pull requests
# opened against ma
ster
"
# Translated: "Execute this workflow on pushes to ma
in
OR on pull requests
# opened against ma
in
"
#
# See this question and answer for what we're solving here:
# https://github.community/t5/GitHub-Actions/How-to-trigger-an-action-on-push-or-pull-request-but-not-both/m-p/36155#M2460
on
:
push
:
branches
:
[
ma
ster
]
branches
:
[
ma
in
]
pull_request
:
branches
:
[
ma
ster
]
branches
:
[
ma
in
]
jobs
:
test
:
...
...
@@ -67,7 +67,7 @@ jobs:
production_deploy
:
name
:
Production Deploy
if
:
github.ref == 'refs/heads/ma
ster
'
if
:
github.ref == 'refs/heads/ma
in
'
runs-on
:
ubuntu-latest
needs
:
[
test
]
steps
:
...
...
This diff is collapsed.
Click to expand it.
.github/workflows/lint.yaml
+
2
−
2
View file @
e2bb3ece
...
...
@@ -2,9 +2,9 @@ name: Lint
on
:
push
:
branches
:
[
ma
ster
]
# pushes TO ma
ster
branches
:
[
ma
in
]
# pushes TO ma
in
pull_request
:
branches
:
[
ma
ster
]
# pull requests AGAINST ma
ster
branches
:
[
ma
in
]
# pull requests AGAINST ma
in
jobs
:
golangci
:
...
...
This diff is collapsed.
Click to expand it.
README.md
+
2
−
2
View file @
e2bb3ece
...
...
@@ -4,8 +4,8 @@ A reasonably complete and well-tested golang port of [Kenneth Reitz][kr]'s
[
httpbin
][
httpbin-org
]
service, with zero dependencies outside the go stdlib.
[

](https://pkg.go.dev/github.com/mccutchen/go-httpbin/v2)
[

](http://
travis-ci.org
/mccutchen/go-httpbin)
[

](https://codecov.io/gh/mccutchen/go-httpbin)
[

](http
s
://
github.com
/mccutchen/go-httpbin
/actions/workflows/continuous_delivery.yaml
)
[

](https://codecov.io/gh/mccutchen/go-httpbin)
## Usage
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment