Skip to content

Commit

Permalink
Merge pull request #101 from a-kenji/development
Browse files Browse the repository at this point in the history
  • Loading branch information
a-kenji authored Nov 12, 2023
2 parents c4428fb + 2f33d43 commit 1459ff4
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 10 deletions.
2 changes: 2 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@ updates:
directory: "/"
schedule:
interval: "weekly"
target-branch: "development"

- package-ecosystem: "cargo"
directory: "/"
schedule:
interval: "weekly"
target-branch: "development"
4 changes: 2 additions & 2 deletions .github/workflows/actionlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ name: "actionlint"
on:
workflow_dispatch: # allows manual triggering
pull_request:
branches: [ main ]
branches: [ release, development]
paths-ignore:
- '**.md'
push:
branches: [ main ]
branches: [ release, development ]
paths-ignore:
- '**.md'
merge_group:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ name: "ci"
on:
workflow_dispatch: # allows manual triggering
pull_request:
branches: [ main ]
branches: [ release, development ]
push:
branches: [ main ]
branches: [ release, development ]
merge_group:

jobs:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/darwin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ name: darwin

on:
pull_request:
branches:
- main
branches: [ release, development ]
paths-ignore:
- '**.md'
merge_group:

jobs:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nix-develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ name: "nix develop"
on:
workflow_dispatch: # allows manual triggering
pull_request:
branches: [ main ]
branches: [ release, development ]
paths:
- '**.nix'
- 'flake.lock'
- 'flake.nix'
- 'rust-toolchain.toml'
push:
branches: [ main ]
branches: [ release, development ]
paths:
- '**.nix'
- 'flake.lock'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ name: "nix"
on:
workflow_dispatch: # allows manual triggering
pull_request:
branches: [ main ]
branches: [ release, development ]
paths-ignore:
- '**.md'
push:
branches: [ main ]
branches: [ release, development ]
paths-ignore:
- '**.md'
merge_group:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/update-flake-lock.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
uses: DeterminateSystems/update-flake-lock@v20
with:
token: ${{ secrets.GH_TOKEN_FOR_UPDATES }}
branch: development
pr-labels: |
dependencies
automated
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/update-rust-toolchain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
with:
toolchain-path: './rust-toolchain.toml'
token: ${{ secrets.GH_TOKEN_FOR_UPDATES }}
pr-branch: development
pr-labels: |
dependencies
automated
Expand Down
4 changes: 4 additions & 0 deletions docs/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ Thank you for considering to contribute.
You are invited to contribute new features, fixes or updates, large or small.
We are always happy to receive contributions and attempt to process them in a timely manner.

## Branches
Releases will be cut on the `release` branch.
Most PR`s and features should land on the `development` branch.

## Issues
To get an overview of what can be worked on, please take a look at the [issues](https://github.com/a-kenji/tui-term/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc).

Expand Down

0 comments on commit 1459ff4

Please sign in to comment.