Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ prettier-lint:
WORKDIR /config
COPY --dir .pnp.cjs .yarnrc.yml package.json yarn.lock .yarn .
RUN yarn
COPY . .
COPY --dir .prettierignore .prettierrc.yml .github .
RUN yarn check-format

Expand Down
7 changes: 3 additions & 4 deletions ansible/galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ readme: README.md
# A list of the collection's content authors. Can be just the name or in the format 'Full Name <email> (url)
# @nicks:irc/im.site#channel'
authors:
- robarnold
- sdwilsh
- robarnold
- sdwilsh

# Either a single license or a list of licenses for content inside of a collection. Ansible Galaxy currently only
# accepts L(SPDX,https://spdx.org/licenses/) licenses. This key is mutually exclusive with 'license_file'
license:
- BSD-3-Clause
- BSD-3-Clause

# A list of tags you want to associate with the collection for indexing/searching. A tag name has the same character
# requirements as 'namespace' and 'name'
Expand Down Expand Up @@ -45,4 +45,3 @@ issues: https://github.com/marinatedconcrete/config/issues
# uses 'fnmatch' to match the files or directories. Some directories and files like 'galaxy.yml', '*.pyc', '*.retry',
# and '.git' are always filtered
build_ignore: []

16 changes: 4 additions & 12 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,30 +9,22 @@
"customManagers": [
{
"customType": "regex",
"fileMatch": [
"(^|/|\\.)Earthfile$"
],
"fileMatch": ["(^|/|\\.)Earthfile$"],
"matchStrings": [
"#\\s*renovate:\\s*datasource=(?<datasource>.*?)\\s+depName=(?<depName>.*?)(\\s+versioning=(?<versioning>.*?))?\\s+ARG\\s+(?:--global\\s+)?.+_VERSION=(?<currentValue>.*?)\\s"
],
"versioningTemplate": "{{#if versioning}}{{versioning}}{{else}}semver{{/if}}"
},
{
"customType": "regex",
"fileMatch": [
"^earthly\\.sh$"
],
"fileMatch": ["^earthly\\.sh$"],
"datasourceTemplate": "docker",
"depNameTemplate": "earthly/earthly",
"matchStrings": [
"earthly\\/earthly:(?<currentValue>.*?)\\s"
]
"matchStrings": ["earthly\\/earthly:(?<currentValue>.*?)\\s"]
},
{
"customType": "regex",
"fileMatch": [
"^.*\\.yml$"
],
"fileMatch": ["^.*\\.yml$"],
"matchStrings": [
"#\\s*renovate:\\s*datasource=(?<datasource>.*?)\\s+depName=(?<depName>.*?)\\s+version:\\s+\"(?<currentValue>.*?)\""
]
Expand Down