Skip to content

Commit

Permalink
ci: get rid of development branch
Browse files Browse the repository at this point in the history
  • Loading branch information
arcan1s committed Apr 21, 2024
1 parent 56c0a58 commit f121db3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@ name: build & tests

on:
push:
branches: [ development, master ]
branches:
- master
pull_request:
branches: [ development, master ]
branches:
- master

env:
BUILD_TYPE: Release
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ Development
* Try to minimize message in Release build with logging disabled. It is highly recommended to fix KDE/Qt specific warning if possible
* Do not use dependency to KDE libraries if there are no any strictly necessary. Exceptions are KNotification and KI18n libraries.
* It is highly recommended to use submodules for third party libraries if possible.
* The main branch is **development**. Changes in this branch may be merged to the master one only if it is a 'stable' build.
* For experimental features development new branch `feature-foo` creation is allowed and recommended.
* The main branch is **master**.
* For experimental features development new branch `feature/foo` creation is allowed and recommended.
* Experimental features should be added inside `BUILD_FUTURE` definition:

```
Expand Down

0 comments on commit f121db3

Please sign in to comment.