Merge branch 'dev' into dev

This commit is contained in:
Adam Warner 2023-10-08 13:09:41 +01:00 committed by GitHub
commit bc9436bb81
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 0 deletions

28
.github/workflows/housekeeping.yml vendored Normal file
View File

@ -0,0 +1,28 @@
name: housekeeping
on:
workflow_dispatch:
jobs:
housekeeping:
runs-on: ubuntu-latest
steps:
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
-
name: Login to GitHub Container Registry with PAT_TOKEN
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.PAT_TOKEN }}
-
name: Delete all containers from repository without tags
uses: Chizkiyahu/delete-untagged-ghcr-action@v2
with:
token: ${{ secrets.PAT_TOKEN }}
repository_owner: ${{ github.repository_owner }}
repository: ${{ github.repository }}
untagged_only: true
owner_type: org # or user
except_untagged_multiplatform: true

View File

@ -1,11 +1,14 @@
name: Build and Publish (development-v6-nightly)
on:
workflow_dispatch:
schedule:
- cron: "0 5 * * *"
push:
branches:
- development-v6
pull_request:
branches:
- development-v6
env:
dockerhub: ${{ secrets.DOCKERHUB_NAMESPACE }}/pihole