Skip to content

Commit

Permalink
ci: fix branches (#547)
Browse files Browse the repository at this point in the history
* ci: fix branches

* fix: doc
  • Loading branch information
pandadefi authored Nov 1, 2022
1 parent 61da2d3 commit 74364b2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Lint
on:
push:
branches:
- main
- master
- develop
pull_request:

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ on:
push:
# branches to consider in the event; optional, defaults to all
branches:
- main
- master

jobs:
update_release_draft:
runs-on: ubuntu-latest
steps:
# Drafts your next Release notes as Pull Requests are merged into "main"
# Drafts your next Release notes as Pull Requests are merged into "master"
- uses: release-drafter/release-drafter@v5
with:
disable-autolabeler: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Test
on:
push:
branches:
- main
- master
- develop
pull_request:

Expand Down
5 changes: 3 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,11 @@ The official yearn-vaults repository may have changed since the time you cloned
git fetch origin
```

Then synchronize your main branch:
Then synchronize your master branch:

```bash
git pull origin main
git pull origin master

```

To stage the changed files that are be committed, issue the command:
Expand Down

0 comments on commit 74364b2

Please sign in to comment.