13 lines
426 B
Markdown
13 lines
426 B
Markdown
# 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.
|
|
|
|
```
|
|
name: 'Watchtower Example'
|
|
on: [push]
|
|
jobs:
|
|
use-action:
|
|
runs-on: standard-latest
|
|
steps:
|
|
- name: Trigger watchtower
|
|
uses: https://gitea.seeseepuff.be/actions/watchtower@master
|
|
``` |