mirror of https://github.com/tteck/Proxmox.git
Compare commits
No commits in common. "1d6c0acf0dfa872d1c768818185bfdb1a06426f7" and "6037d381ef3f061357b6d689f5fa89df26310c59" have entirely different histories.
1d6c0acf0d
...
6037d381ef
|
@ -1,5 +1,5 @@
|
||||||
name: Problems with a script.
|
name: Problems with a script.
|
||||||
description: Generate a report on an issue pertaining specifically to a script. For other inquires please share them in the Discussions section.
|
description: Generate a report on an issue pertaining specifically to a script. For other inquires please share them in the Discussions section. Blank issues will be closed immediately.
|
||||||
body:
|
body:
|
||||||
- type: markdown
|
- type: markdown
|
||||||
attributes:
|
attributes:
|
||||||
|
@ -35,7 +35,7 @@ body:
|
||||||
- Debian 12
|
- Debian 12
|
||||||
- Ubuntu 20.04
|
- Ubuntu 20.04
|
||||||
- Ubuntu 22.04
|
- Ubuntu 22.04
|
||||||
- Ubuntu 23.10
|
- Ubuntu 23.04
|
||||||
- type: textarea
|
- type: textarea
|
||||||
id: screenshot
|
id: screenshot
|
||||||
attributes:
|
attributes:
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
blank_issues_enabled: false
|
|
||||||
contact_links:
|
|
||||||
- name: Helper-Scripts Community Support
|
|
||||||
url: https://github.com/tteck/Proxmox/discussions
|
|
||||||
about: Please ask and answer questions here.
|
|
|
@ -10,9 +10,7 @@ Fixes # (issue)
|
||||||
|
|
||||||
Please delete options that are not relevant.
|
Please delete options that are not relevant.
|
||||||
|
|
||||||
- [ ] Bug fix (non-breaking change which fixes an issue)
|
- [ ] Bug fix
|
||||||
- [ ] New feature (non-breaking change which adds functionality)
|
- [ ] New feature
|
||||||
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
|
- [ ] New Script
|
||||||
- [ ] New Script (Develop a new script or set of scripts that are fully functional and thoroughly tested)
|
|
||||||
- [ ] I have performed a self-review of my code, adhering to established codebase patterns and conventions.
|
|
||||||
- [ ] This change requires a documentation update
|
- [ ] This change requires a documentation update
|
||||||
|
|
|
@ -0,0 +1,21 @@
|
||||||
|
name: CI
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- gh-pages
|
||||||
|
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Set up Node.js
|
||||||
|
uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
node-version: 20
|
||||||
|
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v3
|
|
@ -1,25 +0,0 @@
|
||||||
name: Welcome
|
|
||||||
on:
|
|
||||||
pull_request:
|
|
||||||
types: [opened, closed]
|
|
||||||
issues:
|
|
||||||
types: [opened]
|
|
||||||
jobs:
|
|
||||||
run:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: wow-actions/welcome@v1
|
|
||||||
with:
|
|
||||||
FIRST_ISSUE: |
|
|
||||||
👋 @{{ author }}
|
|
||||||
Thanks for opening your first issue here! Be sure to follow the issue template!
|
|
||||||
|
|
||||||
FIRST_PR: |
|
|
||||||
👋 @{{ author }}
|
|
||||||
Thanks for opening this pull request! Please check out our contributing guidelines.
|
|
||||||
|
|
||||||
FIRST_PR_MERGED: |
|
|
||||||
🎉 @{{ author }}
|
|
||||||
Congrats on merging your first pull request! We here at behaviorbot are proud of you!
|
|
||||||
|
|
||||||
STAR_MESSAGE: If you like this project, please ⭐ our repo.
|
|
Loading…
Reference in New Issue