-
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.
Merge pull request #1 from collective/config-with-default-template-d0…
…3b196d Configuring with plone/meta
- Loading branch information
Showing
12 changed files
with
474 additions
and
89 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
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,22 @@ | ||
# Generated from: | ||
# https://github.com/plone/meta/tree/main/config/default | ||
# See the inline comments on how to expand/tweak this configuration file | ||
[flake8] | ||
doctests = 1 | ||
ignore = | ||
# black takes care of line length | ||
E501, | ||
# black takes care of where to break lines | ||
W503, | ||
# black takes care of spaces within slicing (list[:]) | ||
E203, | ||
# black takes care of spaces after commas | ||
E231, | ||
|
||
## | ||
# Add extra configuration options in .meta.toml: | ||
# [flake8] | ||
# extra_lines = """ | ||
# _your own configuration lines_ | ||
# """ | ||
## |
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,75 @@ | ||
# Generated from: | ||
# https://github.com/plone/meta/tree/main/config/default | ||
# See the inline comments on how to expand/tweak this configuration file | ||
name: Meta | ||
on: | ||
push: | ||
branches: | ||
- master | ||
- main | ||
pull_request: | ||
branches: | ||
- master | ||
- main | ||
workflow_dispatch: | ||
|
||
## | ||
# To set environment variables for all jobs, add in .meta.toml: | ||
# [github] | ||
# env = """ | ||
# debug: 1 | ||
# image-name: 'org/image' | ||
# image-tag: 'latest' | ||
# """ | ||
## | ||
|
||
jobs: | ||
qa: | ||
uses: plone/meta/.github/workflows/qa.yml@main | ||
test: | ||
uses: plone/meta/.github/workflows/test.yml@main | ||
coverage: | ||
uses: plone/meta/.github/workflows/coverage.yml@main | ||
dependencies: | ||
uses: plone/meta/.github/workflows/dependencies.yml@main | ||
release_ready: | ||
uses: plone/meta/.github/workflows/release_ready.yml@main | ||
circular: | ||
uses: plone/meta/.github/workflows/circular.yml@main | ||
|
||
## | ||
# To modify the list of default jobs being created add in .meta.toml: | ||
# [github] | ||
# jobs = [ | ||
# "qa", | ||
# "test", | ||
# "coverage", | ||
# "dependencies", | ||
# "release_ready", | ||
# "circular", | ||
# ] | ||
## | ||
|
||
## | ||
# To request that some OS level dependencies get installed | ||
# when running tests/coverage jobs, add in .meta.toml: | ||
# [github] | ||
# os_dependencies = "git libxml2 libxslt" | ||
## | ||
|
||
## | ||
# To test against a specific matrix of python versions | ||
# when running tests jobs, add in .meta.toml: | ||
# [github] | ||
# py_versions = "['3.12', '3.11']" | ||
## | ||
|
||
|
||
## | ||
# Specify additional jobs in .meta.toml: | ||
# [github] | ||
# extra_lines = """ | ||
# another: | ||
# uses: org/repo/.github/workflows/file.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
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,6 @@ | ||
# Generated from: | ||
# https://github.com/plone/meta/tree/main/config/default | ||
# See the inline comments on how to expand/tweak this configuration file | ||
[meta] | ||
template = "default" | ||
commit-id = "d03b196d" |
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
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
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 @@ | ||
# Generated from: | ||
# https://github.com/plone/meta/tree/main/config/default | ||
# See the inline comments on how to expand/tweak this configuration file | ||
version: 2 | ||
updates: | ||
|
||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
# Check for updates to GitHub Actions every week | ||
interval: "weekly" |
Oops, something went wrong.