generated from litinoveweedle/hassio-addon-example
-
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
0 parents
commit a3a9a55
Showing
20 changed files
with
695 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,60 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"rebaseWhen": "behind-base-branch", | ||
"dependencyDashboard": true, | ||
"labels": ["dependencies", "no-stale"], | ||
"commitMessagePrefix": "⬆️", | ||
"commitMessageTopic": "{{depName}}", | ||
"regexManagers": [ | ||
{ | ||
"fileMatch": ["/Dockerfile$", "/build.yaml$"], | ||
"matchStringsStrategy": "any", | ||
"matchStrings": [ | ||
"ARG BUILD_FROM=(?<depName>.*?):(?<currentValue>.*?)\\s+", | ||
"(aarch64|amd64|armhf|armv7|i386):\\s[\"']?(?<depName>.*?):(?<currentValue>.*?)[\"']?\\s" | ||
], | ||
"datasourceTemplate": "docker" | ||
} | ||
], | ||
"customManagers": [ | ||
{ | ||
"customType": "regex", | ||
"description": "Update _VERSION variables in Dockerfiles", | ||
"fileMatch": ["/Dockerfile$", "/build.yaml$"], | ||
"matchStrings": [ | ||
"# renovate: datasource=(?<datasource>[a-z-]+?)(?: depName=(?<depName>.+?))? packageName=(?<packageName>.+?)(?: versioning=(?<versioning>[a-z-]+?))?\\s(?:ENV|ARG) .+?_VERSION=(?<currentValue>.+?)\\s" | ||
] | ||
} | ||
] | ||
"packageRules": [ | ||
{ | ||
"matchDatasources": ["repology"], | ||
"automerge": true | ||
}, | ||
{ | ||
"groupName": "Add-on base image", | ||
"matchDatasources": ["docker"] | ||
}, | ||
{ | ||
"groupName": "Add-on base image", | ||
"matchDatasources": ["docker"], | ||
"matchUpdateTypes": ["patch"], | ||
"automerge": true | ||
}, | ||
{ | ||
"matchDatasources": ["github-releases"], | ||
"matchUpdateTypes": ["minor", "patch"], | ||
"automerge": true | ||
}, | ||
{ | ||
"matchManagers": ["github-actions"], | ||
"addLabels": ["github_actions"], | ||
"rangeStrategy": "pin" | ||
}, | ||
{ | ||
"matchManagers": ["github-actions"], | ||
"matchUpdateTypes": ["minor", "patch"], | ||
"automerge": true | ||
} | ||
] | ||
} |
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,117 @@ | ||
name: Builder | ||
|
||
env: | ||
BUILD_ARGS: "--test" | ||
MONITORED_FILES: "build.yaml config.yaml Dockerfile rootfs" | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
init: | ||
runs-on: ubuntu-latest | ||
name: Initialize builds | ||
outputs: | ||
changed_addons: ${{ steps.changed_addons.outputs.addons }} | ||
changed: ${{ steps.changed_addons.outputs.changed }} | ||
steps: | ||
- name: Check out the repository | ||
uses: actions/[email protected] | ||
|
||
- name: Get changed files | ||
id: changed_files | ||
uses: jitterbit/get-changed-files@v1 | ||
|
||
- name: Find add-on directories | ||
id: addons | ||
uses: home-assistant/actions/helpers/find-addons@master | ||
|
||
- name: Get changed add-ons | ||
id: changed_addons | ||
run: | | ||
declare -a changed_addons | ||
for addon in ${{ steps.addons.outputs.addons }}; do | ||
if [[ "${{ steps.changed_files.outputs.all }}" =~ $addon ]]; then | ||
for file in ${{ env.MONITORED_FILES }}; do | ||
if [[ "${{ steps.changed_files.outputs.all }}" =~ $addon/$file ]]; then | ||
if [[ ! "${changed_addons[@]}" =~ $addon ]]; then | ||
changed_addons+=("\"${addon}\","); | ||
fi | ||
fi | ||
done | ||
fi | ||
done | ||
changed=$(echo ${changed_addons[@]} | rev | cut -c 2- | rev) | ||
if [[ -n ${changed} ]]; then | ||
echo "Changed add-ons: $changed"; | ||
echo "changed=true" >> $GITHUB_OUTPUT; | ||
echo "addons=[$changed]" >> $GITHUB_OUTPUT; | ||
else | ||
echo "No add-on had any monitored files changed (${{ env.MONITORED_FILES }})"; | ||
fi | ||
build: | ||
needs: init | ||
runs-on: ubuntu-latest | ||
if: needs.init.outputs.changed == 'true' | ||
name: Build ${{ matrix.arch }} ${{ matrix.addon }} add-on | ||
strategy: | ||
matrix: | ||
addon: ${{ fromJson(needs.init.outputs.changed_addons) }} | ||
arch: ["aarch64", "amd64", "armhf", "armv7", "i386"] | ||
permissions: | ||
contents: read | ||
packages: write | ||
|
||
steps: | ||
- name: Check out repository | ||
uses: actions/[email protected] | ||
|
||
- name: Get information | ||
id: info | ||
uses: home-assistant/actions/helpers/info@master | ||
with: | ||
path: "./${{ matrix.addon }}" | ||
|
||
- name: Check if add-on should be built | ||
id: check | ||
run: | | ||
if [[ "${{ steps.info.outputs.image }}" == "null" ]]; then | ||
echo "Image property is not defined, skipping build" | ||
echo "build_arch=false" >> $GITHUB_OUTPUT; | ||
elif [[ "${{ steps.info.outputs.architectures }}" =~ ${{ matrix.arch }} ]]; then | ||
echo "build_arch=true" >> $GITHUB_OUTPUT; | ||
echo "image=$(echo ${{ steps.info.outputs.image }} | cut -d'/' -f3)" >> $GITHUB_OUTPUT; | ||
if [[ -z "${{ github.head_ref }}" ]] && [[ "${{ github.event_name }}" == "push" ]]; then | ||
echo "BUILD_ARGS=" >> $GITHUB_ENV; | ||
fi | ||
else | ||
echo "${{ matrix.arch }} is not a valid arch for ${{ matrix.addon }}, skipping build"; | ||
echo "build_arch=false" >> $GITHUB_OUTPUT; | ||
fi | ||
- name: Login to GitHub Container Registry | ||
if: env.BUILD_ARGS != '--test' | ||
uses: docker/[email protected] | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build ${{ matrix.addon }} add-on | ||
if: steps.check.outputs.build_arch == 'true' | ||
uses: home-assistant/[email protected] | ||
with: | ||
args: | | ||
${{ env.BUILD_ARGS }} \ | ||
--${{ matrix.arch }} \ | ||
--target /data/${{ matrix.addon }} \ | ||
--image "${{ steps.check.outputs.image }}" \ | ||
--docker-hub "ghcr.io/${{ github.repository_owner }}" \ | ||
--addon |
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,41 @@ | ||
name: Lint | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
schedule: | ||
- cron: "0 0 * * *" | ||
|
||
jobs: | ||
find: | ||
name: Find add-ons | ||
runs-on: ubuntu-latest | ||
outputs: | ||
addons: ${{ steps.addons.outputs.addons_list }} | ||
steps: | ||
- name: ⤵️ Check out code from GitHub | ||
uses: actions/[email protected] | ||
|
||
- name: 🔍 Find add-on directories | ||
id: addons | ||
uses: home-assistant/actions/helpers/find-addons@master | ||
|
||
lint: | ||
name: Lint add-on ${{ matrix.path }} | ||
runs-on: ubuntu-latest | ||
needs: find | ||
strategy: | ||
matrix: | ||
path: ${{ fromJson(needs.find.outputs.addons) }} | ||
steps: | ||
- name: ⤵️ Check out code from GitHub | ||
uses: actions/[email protected] | ||
|
||
- name: 🚀 Run Home Assistant Add-on Lint | ||
uses: frenck/[email protected] | ||
with: | ||
path: "./${{ matrix.path }}" |
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,47 @@ | ||
name: Renovate | ||
on: | ||
# Allows manual/automated ad-hoc trigger | ||
workflow_dispatch: | ||
inputs: | ||
logLevel: | ||
description: "Override default log level" | ||
required: false | ||
default: "info" | ||
type: string | ||
overrideSchedule: | ||
description: "Override all schedules" | ||
required: false | ||
default: "false" | ||
type: string | ||
# Run twice in the early morning for initial and follow up steps (create pull request and merge) | ||
schedule: | ||
- cron: '30 4,6 * * *' | ||
concurrency: renovate | ||
jobs: | ||
renovate: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
# Don't waste time starting Renovate if JSON is invalid | ||
- name: Validate Renovate JSON | ||
run: jq type .github/renovate.json | ||
- name: Self-hosted Renovate | ||
uses: renovatebot/[email protected] | ||
#env: | ||
# Repository taken from variable to keep configuration file generic | ||
#RENOVATE_REPOSITORIES: ${{ github.repository }} | ||
# Onboarding not needed for self hosted | ||
#RENOVATE_ONBOARDING: "false" | ||
# Username for GitHub authentication (should match GitHub App name + [bot]) | ||
#RENOVATE_USERNAME: "renovate[bot]" | ||
# Git commit author used, must match GitHub App | ||
#RENOVATE_GIT_AUTHOR: "superseb-demo-renovate <121964725+superseb-demo-renovate[bot]@users.noreply.github.com>" | ||
# Use GitHub API to create commits (this allows for signed commits from GitHub App) | ||
#RENOVATE_PLATFORM_COMMIT: "true" | ||
# Override schedule if set | ||
#RENOVATE_FORCE: ${{ github.event.inputs.overrideSchedule == 'true' && '{''schedule'':null}' || '' }} | ||
#LOG_LEVEL: ${{ inputs.logLevel || 'info' }} | ||
with: | ||
configurationFile: .github/renovate.json | ||
token: ${{ secrets.RENOVATE_TOKEN }} |
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 @@ | ||
name: Template-sync | ||
on: | ||
# cronjob trigger | ||
schedule: | ||
- cron: "0 0 1 * *" | ||
# manual trigger | ||
workflow_dispatch: | ||
jobs: | ||
repo-sync: | ||
runs-on: ubuntu-latest | ||
# https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs | ||
permissions: | ||
contents: write | ||
pull-requests: write | ||
|
||
steps: | ||
# To use this repository's private action, you must check out the repository | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
# https://github.com/actions/checkout#usage | ||
# uncomment if you use submodules within the repository | ||
# with: | ||
# submodules: true | ||
|
||
- name: actions-template-sync | ||
uses: AndreasAugustin/actions-template-sync@v2 | ||
with: | ||
source_repo_path: litinoveweedle/hassio-addon-example | ||
# upstream_branch: <target_branch> # defaults to main | ||
# pr_labels: <label1>,<label2>[,...] # defaults to template_sync |
Oops, something went wrong.