Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Explorer CI

on:
push:
branches: [main, staging]
branches: [main]
pull_request:
workflow_dispatch:

Expand Down
12 changes: 6 additions & 6 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,25 +30,25 @@ You need only to do this once and you have probably already done this if you alr
### Clone the repository on your local machine.

```
$ git clone git@github.com:username/explorer.git --branch staging
$ git clone git@github.com:username/explorer.git --branch main
$ cd explorer
$ git remote add upstream git@github.com:ripple/explorer.git
```

### Start work in a new branch.

```
$ git fetch upstream staging
$ git checkout staging
$ git fetch upstream main
$ git checkout main
$ git checkout -b your-branch-name
$ git push --set-upstream origin your-branch-name
```

Bring in recent changes to the “staging” branch into your own branch
Bring in recent changes to the “main” branch into your own branch

```
$ git fetch upstream staging
$ git pull upstream staging
$ git fetch upstream main
$ git pull upstream main
```

### Ask to submit code from a branch of your GitHub fork.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[![Release](https://img.shields.io/github/v/release/ripple/explorer.svg)](https://github.com/ripple/explorer/releases)
[![Build](https://github.com/ripple/explorer/actions/workflows/nodejs.yml/badge.svg)](https://github.com/ripple/explorer/actions)
[![License](https://img.shields.io/github/license/ripple/explorer)](https://github.com/ripple/explorer/blob/staging/LICENSE)
[![License](https://img.shields.io/github/license/ripple/explorer)](https://github.com/ripple/explorer/blob/main/LICENSE)

# XRPL Explorer

Expand Down