-
Notifications
You must be signed in to change notification settings - Fork 0
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
7146969
commit 4e19e3a
Showing
4 changed files
with
109 additions
and
0 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,30 @@ | ||
# depandabot to update your package.json or requirements.txt - remove useless sections | ||
# check all configuration options : | ||
# https://docs.github.com/fr/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file | ||
# also works with private repository | ||
# https://docs.github.com/fr/code-security/dependabot/working-with-dependabot/configuring-access-to-private-registries-for-dependabot | ||
version: 2 | ||
updates: | ||
# Maintain python pip dependencies in your 'requirement.txt' file | ||
- package-ecosystem: "pip" | ||
directory: "/resources" | ||
target-branch: "beta" | ||
schedule: | ||
interval: weekly | ||
|
||
# Maintain NodeJS dependencies in 'package.json' | ||
- package-ecosystem: npm | ||
directory: "/resources/" | ||
schedule: | ||
interval: weekly | ||
open-pull-requests-limit: 10 | ||
versioning-strategy: increase | ||
target-branch: "beta" | ||
|
||
# Maintain any github-actions workflow | ||
# https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "monthly" | ||
target-branch: "beta" |
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 @@ | ||
<!-- Provide a general summary of your changes in the title above. --> | ||
|
||
<!-- | ||
Please target the `beta` branch when submitting your pull request, unless your change **only** applies to Jeedom 4.x. | ||
--> | ||
|
||
## Description | ||
<!-- | ||
What do you want to achieve with this PR? Why did you write this code? What problem does this PR solve? | ||
Describe your changes in detail and, if relevant, explain which choices you have made and why. | ||
--> | ||
|
||
|
||
### Suggested changelog entry | ||
<!-- Please provide a short description of the change for the changelog. --> | ||
|
||
|
||
### Related issues/external references | ||
|
||
Fixes # | ||
|
||
|
||
## Types of changes | ||
<!-- What types of changes does your code introduce? Put an `x` in all the boxes that apply: --> | ||
- [ ] Bug fix _(non-breaking change which fixes)_ | ||
- [ ] New feature _(non-breaking change which adds functionality)_ | ||
- [ ] Breaking change _(fix or feature that would cause existing functionality to change)_ | ||
- [ ] This change is only breaking for integrators, not for external standards or end-users. | ||
- [ ] Documentation improvement | ||
|
||
|
||
## PR checklist | ||
<!-- Go over all the following points, and put an `x` in all the boxes that apply. --> | ||
- [ ] I have checked there is no other PR open for the same change. | ||
- [ ] I have read the [Contribution Guidelines](https://doc.jeedom.com/fr_FR/contribute/). | ||
- [ ] I grant the project the right to include and distribute the code under the GNU. | ||
- [ ] I have added tests to cover my changes. | ||
- [ ] I have verified that the code complies with the projects coding standards. | ||
- [ ] [Required for new sniffs] I have added MD documentation for the sniff. | ||
|
||
<!-- | ||
============================================================================================ | ||
Please make sure your pull request passes all continuous integration checks! | ||
PRs which are failing their CI checks will likely be ignored by the maintainers. | ||
PRs using atomic, descriptive commits are hugely appreciated as it will make | ||
reviewing your changes easier for the maintainers. | ||
============================================================================================ | ||
--> |
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,14 @@ | ||
on: | ||
# Create branch > prettier / this workflows create commit on branch prettier. | ||
push: | ||
branches: | ||
- prettier | ||
pull_request: | ||
branches: | ||
- prettier | ||
|
||
name : 'Prettier Plugin Jeedom' | ||
|
||
jobs: | ||
prettier: | ||
uses: jeedom/workflows/.github/workflows/prettier.yml@main |
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,15 @@ | ||
on: | ||
# Workflows check plugin Jeedom | ||
push: | ||
branches: | ||
- beta | ||
pull_request: | ||
branches: | ||
- beta | ||
- master | ||
|
||
name : 'Full Workflows Plugin Jeedom' | ||
|
||
jobs: | ||
plugin: | ||
uses: jeedom/workflows/.github/workflows/plugin.yml@main |