mirror of
https://github.com/Icinga/docker-icinga2.git
synced 2026-05-05 10:56:12 +02:00
24 lines
507 B
YAML
24 lines
507 B
YAML
name: Sync README.md to Docker Hub
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
sync:
|
|
name: Sync README
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout HEAD
|
|
uses: actions/checkout@v1
|
|
|
|
- name: Sync README
|
|
uses: ms-jpq/sync-dockerhub-readme@e2991ea1ba48832e73555cdbd5b82f5a2e91ee9b # v1
|
|
with:
|
|
username: icingaadmin
|
|
password: '${{ secrets.DOCKER_HUB_PERSONAL_TOKEN }}'
|
|
repository: icinga/icinga2
|
|
readme: ./README.md
|