mirror of
https://github.com/Icinga/icingadb.git
synced 2026-02-18 18:18:00 -05:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
21 lines
527 B
YAML
21 lines
527 B
YAML
name: Sync For-Container.md to Docker Hub
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
sync:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout HEAD
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Sync For-Container.md
|
|
uses: ms-jpq/sync-dockerhub-readme@df5121ab3314dc86fd36863eb111ab986fc6c612
|
|
|
|
with:
|
|
username: icingaadmin
|
|
password: '${{ secrets.DOCKER_HUB_PERSONAL_TOKEN }}'
|
|
repository: icinga/icingadb
|
|
readme: ./doc/02-Installation.md.d/For-Container.md
|