-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
16e7fa8
commit a9587d5
Showing
7 changed files
with
210 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
custom: https://www.paypal.me/prderbyshire/2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
--- | ||
name: Problem Report | ||
about: Create a Report to help us improve | ||
--- | ||
|
||
<!-- Thanks for reporting a problem for this project. READ THIS FIRST: | ||
Please DO NOT OPEN AN ISSUE if your EMS-ESP version is not the latest from the dev branch, please update your device before submitting your issue. Your problem might already be solved. The latest precompiled binaries of EMS-ESP can be downloaded from https://github.com/emsesp/EMS-ESP32/releases/tag/latest | ||
Please take a few minutes to complete the requested information below. | ||
--> | ||
|
||
### PROBLEM DESCRIPTION | ||
|
||
_A clear and concise description of what the problem is._ | ||
|
||
### REQUESTED INFORMATION | ||
|
||
_Make sure your have performed every step and checked the applicable boxes before submitting your issue. Thank you!_ | ||
|
||
- [ ] Searched the problem in [issues](https://github.com/emsesp/EMS-ESP32/issues) | ||
- [ ] Searched the problem in [discussions](https://github.com/emsesp/EMS-ESP32/discussions) | ||
- [ ] Searched the problem in the [docs](https://emsesp.github.io/docs/Troubleshooting/) | ||
- [ ] Searched the problem in the [chat](https://discord.gg/3J3GgnzpyT) | ||
- [ ] Provide the output of http://ems-esp.local/api/system : | ||
|
||
```lua | ||
System information output here: | ||
|
||
|
||
``` | ||
|
||
### TO REPRODUCE | ||
|
||
_Steps to reproduce the behavior:_ | ||
|
||
### EXPECTED BEHAVIOUR | ||
|
||
_A clear and concise description of what you expected to happen._ | ||
|
||
### SCREENSHOTS | ||
|
||
_If applicable, add screenshots to help explain your problem._ | ||
|
||
### ADDITIONAL CONTEXT | ||
|
||
_Add any other context about the problem here._ | ||
|
||
**(Please, remember to close the issue when the problem has been addressed)** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: EMS-ESP Docs | ||
url: https://emsesp.github.io/docs/ | ||
about: All the information related to EMS-ESP. | ||
- name: EMS-ESP Discussions and Support | ||
url: https://github.com/emsesp/EMS-ESP32/discussions | ||
about: EMS-ESP usage Questions, Feature Requests and Projects. | ||
- name: EMS-ESP Users Chat | ||
url: https://discord.gg/3J3GgnzpyT | ||
about: Chat for feedback, questions and troubleshooting. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Number of days of inactivity before an Issue or Pull Request becomes stale | ||
daysUntilStale: 40 | ||
|
||
# Number of days of inactivity before a stale Issue or Pull Request is closed. | ||
# Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale. | ||
daysUntilClose: 5 | ||
|
||
# Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable | ||
exemptLabels: | ||
- pinned | ||
- security | ||
- enhancement | ||
- bug | ||
|
||
# Set to true to ignore issues in a project (defaults to false) | ||
exemptProjects: false | ||
|
||
# Set to true to ignore issues in a milestone (defaults to false) | ||
exemptMilestones: false | ||
|
||
# Label to use when marking as stale | ||
staleLabel: stale | ||
|
||
# Comment to post when marking as stale. Set to `false` to disable | ||
markComment: > | ||
This issue has been automatically marked as stale because it has not had | ||
recent activity. It will be closed if no further activity occurs. Thank you | ||
for your contributions. | ||
# Comment to post when removing the stale label. | ||
# unmarkComment: > | ||
# Your comment here. | ||
|
||
# Comment to post when closing a stale Issue or Pull Request. | ||
closeComment: > | ||
This issue will be auto-closed because there hasn't been any activity for a few months. Feel free to open a new one if you still experience this problem. | ||
# Limit the number of actions per hour, from 1-30. Default is 30 | ||
limitPerRun: 30 | ||
|
||
# Limit to only `issues` or `pulls` | ||
#only: issues |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
name: 'pre-release' | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- 'dev' | ||
|
||
jobs: | ||
pre-release: | ||
name: 'Automatic pre-release build' | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-python@v4 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: '18' | ||
|
||
- name: Get EMS-ESP source code and version | ||
id: build_info | ||
run: | | ||
version=`grep -E '^#define EMSESP_APP_VERSION' ./src/version.h | awk -F'"' '{print $2}'` | ||
echo "VERSION=$version" >> $GITHUB_OUTPUT | ||
- name: Install PlatformIO | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -U platformio | ||
- name: Build WebUI | ||
run: | | ||
cd interface | ||
yarn install | ||
yarn run typesafe-i18n --no-watch | ||
sed -i "s/= 'pl'/= 'en'/" ./src/i18n/i18n-util.ts | ||
yarn run build | ||
- name: Build firmware | ||
run: | | ||
platformio run -e ci | ||
- name: Create a GH Release | ||
id: 'automatic_releases' | ||
uses: 'marvinpinto/action-automatic-releases@latest' | ||
with: | ||
repo_token: '${{ secrets.GITHUB_TOKEN }}' | ||
title: Development Build v${{steps.build_info.outputs.VERSION}} | ||
automatic_release_tag: 'latest' | ||
prerelease: true | ||
files: | | ||
CHANGELOG_LATEST.md | ||
./build/firmware/*.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: 'tagged-release' | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v*' | ||
|
||
jobs: | ||
tagged-release: | ||
name: 'Tagged Release' | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-python@v4 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: '18' | ||
|
||
- name: Install PlatformIO | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -U platformio | ||
platformio upgrade | ||
pio pkg update | ||
- name: Build WebUI | ||
run: | | ||
cd interface | ||
yarn install | ||
yarn run typesafe-i18n --no-watch | ||
sed -i "s/= 'pl'/= 'en'/" ./src/i18n/i18n-util.ts | ||
yarn run build | ||
- name: Build firmware | ||
run: | | ||
platformio run -e ci | ||
- name: Release | ||
uses: 'marvinpinto/action-automatic-releases@latest' | ||
with: | ||
repo_token: '${{ secrets.GITHUB_TOKEN }}' | ||
prerelease: false | ||
files: | | ||
CHANGELOG.md | ||
./build/firmware/*.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters