mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-02-23 10:15:40 -05:00
Bumps [peter-evans/dockerhub-description](https://github.com/peter-evans/dockerhub-description) from 3.4.2 to 4.0.0.
- [Release notes](https://github.com/peter-evans/dockerhub-description/releases)
- [Commits](dc67fad700...e98e4d1628)
---
updated-dependencies:
- dependency-name: peter-evans/dockerhub-description
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
25 lines
598 B
YAML
25 lines
598 B
YAML
name: Update Docker Hub description
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- Docker/README.md
|
|
branches:
|
|
- edge
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
dockerhub-description:
|
|
if: github.repository_owner == 'FreshRSS'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Update repo description
|
|
uses: peter-evans/dockerhub-description@e98e4d1628a5f3be2be7c231e50981aee98723ae
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
repository: freshrss/freshrss
|
|
readme-filepath: Docker/README.md
|