mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-03-09 01:46:14 -04:00
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@dc67fad7001ef9e8e3c124cb7a64e16d0a63d864
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
repository: freshrss/freshrss
|
|
readme-filepath: Docker/README.md
|