| 123456789101112131415161718192021222324 |
- 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@v5
- - name: Update repo description
- uses: peter-evans/dockerhub-description@432a30c9e07499fd01da9f8a49f0faf9e0ca5b77
- with:
- username: ${{ secrets.DOCKERHUB_USERNAME }}
- password: ${{ secrets.DOCKERHUB_TOKEN }}
- repository: freshrss/freshrss
- readme-filepath: Docker/README.md
|