3 Commits
v1 ... v2

Author SHA1 Message Date
2bf31c49a6 Add renovate.json 2026-05-03 13:06:56 +02:00
4e968d9860 Update action.yml 2026-04-01 11:45:11 +02:00
17a3dc6bfd Update README.md 2026-01-14 19:27:39 +01:00
3 changed files with 18 additions and 1 deletions

View File

@@ -1,2 +1,13 @@
# Watchtower Action # Watchtower Action
This action will automatically trigger an update of watchtower, causing containers that have the label `com.centurylinklabs.watchtower.enable=true` to be automatically updated. This action will automatically trigger an update of watchtower, causing containers that have the label `com.centurylinklabs.watchtower.enable=true` to be automatically updated.
```
name: 'Watchtower Example'
on: [push]
jobs:
use-action:
runs-on: standard-latest
steps:
- name: Trigger watchtower
uses: https://gitea.seeseepuff.be/actions/watchtower@master
```

View File

@@ -5,4 +5,4 @@ runs:
steps: steps:
- name: Trigger Watchtower Update - name: Trigger Watchtower Update
run: | run: |
curl -H "Authorization: Bearer mytoken" https://watchtower.seeseepuff.be/v1/update curl -X POST -H "Authorization: Bearer mytoken" https://watchtower.seeseepuff.be/v1/update

6
renovate.json Normal file
View File

@@ -0,0 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"local>seeseemelk/renovate"
]
}