Обновление ohmyzsh
This commit is contained in:
9
zsh/.github/CODEOWNERS
vendored
Normal file
9
zsh/.github/CODEOWNERS
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
# Plugin owners
|
||||
plugins/archlinux/ @ratijas
|
||||
plugins/aws/ @maksyms
|
||||
plugins/genpass/ @atoponce
|
||||
plugins/git-lfs/ @hellovietduc
|
||||
plugins/gitfast/ @felipec
|
||||
plugins/sdk/ @rgoldberg
|
||||
plugins/universalarchive/ @Konfekt
|
||||
plugins/wp-cli/ @joshmedeski
|
||||
2
zsh/.github/FUNDING.yml
vendored
Normal file
2
zsh/.github/FUNDING.yml
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
github: [robbyrussell, mcornella, larson-carter]
|
||||
open_collective: ohmyzsh
|
||||
46
zsh/.github/ISSUE_TEMPLATE/bug_report.md
vendored
Normal file
46
zsh/.github/ISSUE_TEMPLATE/bug_report.md
vendored
Normal file
@@ -0,0 +1,46 @@
|
||||
---
|
||||
name: Bug report
|
||||
about: Create a report to help us improve Oh My Zsh
|
||||
labels: 'Bug'
|
||||
|
||||
---
|
||||
|
||||
<!--
|
||||
Fill this out before posting. You can delete irrelevant sections, but
|
||||
an issue where no sections have been filled will be deleted without comment.
|
||||
-->
|
||||
|
||||
**Describe the bug**
|
||||
A clear description of what the bug is.
|
||||
|
||||
**To Reproduce**
|
||||
Steps to reproduce the behavior, for example:
|
||||
1. Enable this plugin '...'
|
||||
2. Run command '...' or try the autocomplete command '...'
|
||||
3. See error
|
||||
|
||||
**Expected behavior**
|
||||
A brief description of what should happen.
|
||||
|
||||
**Screenshots and/or Recordings**
|
||||
If applicable, add screenshots to help explain your problem.
|
||||
You can also record an asciinema session: https://asciinema.org/
|
||||
|
||||
**Self Check**
|
||||
|
||||
- Have you tried reaching out on the [Discord server](https://discord.gg/ohmyzsh)?
|
||||
This can help cut down on filling up issues. We always have a few people
|
||||
online that are in a variety of timezones that are willing to help you!
|
||||
|
||||
- Also searching existing [GitHub Issues](https://github.com/ohmyzsh/ohmyzsh/issues?q=) might help you get quicker support
|
||||
|
||||
**Desktop (please complete the following information):**
|
||||
|
||||
- OS / Distro: [e.g. Arch Linux, macOS]
|
||||
- If on Windows what version of WSL: [e.g. WSL1, WSL2]
|
||||
- Latest ohmyzsh update?: [e.g. Yes/No]
|
||||
- ZSH Version: [e.g. 5.6]
|
||||
- Terminal emulator: [e.g. iTerm2]
|
||||
|
||||
**Additional context**
|
||||
Add any other context about the problem here. This can be themes, plugins, custom configs.
|
||||
8
zsh/.github/ISSUE_TEMPLATE/config.yml
vendored
Normal file
8
zsh/.github/ISSUE_TEMPLATE/config.yml
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
blank_issues_enabled: true
|
||||
contact_links:
|
||||
- name: Support
|
||||
url: https://github.com/ohmyzsh/ohmyzsh/discussions
|
||||
about: Ask the community for support
|
||||
- name: Get help on Discord
|
||||
url: https://discord.gg/ohmyzsh
|
||||
about: Have a quick question? Join the Discord server and ask on the appropriate channel.
|
||||
29
zsh/.github/ISSUE_TEMPLATE/feature_request.md
vendored
Normal file
29
zsh/.github/ISSUE_TEMPLATE/feature_request.md
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
---
|
||||
name: Feature request
|
||||
about: Suggest a feature for Oh My Zsh
|
||||
labels: 'Feature'
|
||||
|
||||
---
|
||||
|
||||
<!--
|
||||
Fill this out before posting. You can delete irrelevant sections, but
|
||||
an issue where no sections have been filled will be deleted without comment.
|
||||
-->
|
||||
|
||||
**Is your feature request related to a particular plugin or theme? If so, specify it.**
|
||||
The name of the plugin, theme or alias that you would like us to improve. [...]
|
||||
|
||||
**Is your feature request related to a problem? Please describe.**
|
||||
A description of what the problem is. Ex. I'm always frustrated when [...]
|
||||
|
||||
**Describe the solution you'd like**
|
||||
A description of what you want to happen. [...]
|
||||
|
||||
**Describe alternatives you've considered**
|
||||
A description of any alternative solutions or features you've considered. This can also include other plugins or themes.
|
||||
|
||||
**Additional context**
|
||||
Add any other context, screenshots or discord conversations about the feature request here. Also if you have any PRs related to this issue that are already open that you would like us to look at.
|
||||
|
||||
**Related Issues**
|
||||
Is there any open or closed issues that is related to this feature request? If so please link them below! [...]
|
||||
19
zsh/.github/PULL_REQUEST_TEMPLATE.md
vendored
Normal file
19
zsh/.github/PULL_REQUEST_TEMPLATE.md
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
## Standards checklist:
|
||||
|
||||
<!-- Fill with an x the ones that apply. Example: [x] -->
|
||||
|
||||
- [ ] The PR title is descriptive.
|
||||
- [ ] The PR doesn't replicate another PR which is already open.
|
||||
- [ ] I have read the contribution guide and followed all the instructions.
|
||||
- [ ] The code follows the code style guide detailed in the wiki.
|
||||
- [ ] The code is mine or it's from somewhere with an MIT-compatible license.
|
||||
- [ ] The code is efficient, to the best of my ability, and does not waste computer resources.
|
||||
- [ ] The code is stable and I have tested it myself, to the best of my abilities.
|
||||
|
||||
## Changes:
|
||||
|
||||
- [...]
|
||||
|
||||
## Other comments:
|
||||
|
||||
...
|
||||
36
zsh/.github/workflows/main.yml
vendored
Normal file
36
zsh/.github/workflows/main.yml
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
name: CI
|
||||
on:
|
||||
pull_request:
|
||||
types:
|
||||
- opened
|
||||
- synchronize
|
||||
branches:
|
||||
- master
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
tests:
|
||||
name: Run tests
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest, macos-latest]
|
||||
steps:
|
||||
- name: Set up git repository
|
||||
uses: actions/checkout@v2
|
||||
- name: Install zsh
|
||||
if: runner.os == 'Linux'
|
||||
run: sudo apt-get update; sudo apt-get install zsh
|
||||
- name: Test installer
|
||||
run: sh ./tools/install.sh
|
||||
- name: Check syntax
|
||||
run: |
|
||||
for file in ./oh-my-zsh.sh \
|
||||
./lib/*.zsh \
|
||||
./plugins/*/*.plugin.zsh \
|
||||
./plugins/*/_* \
|
||||
./themes/*.zsh-theme; do
|
||||
zsh -n "$file" || return 1
|
||||
done
|
||||
Reference in New Issue
Block a user