dockerhub-description.yml 598 B

123456789101112131415161718192021222324
  1. name: Update Docker Hub description
  2. on:
  3. push:
  4. paths:
  5. - Docker/README.md
  6. branches:
  7. - edge
  8. workflow_dispatch:
  9. jobs:
  10. dockerhub-description:
  11. if: github.repository_owner == 'FreshRSS'
  12. runs-on: ubuntu-latest
  13. steps:
  14. - uses: actions/checkout@v5
  15. - name: Update repo description
  16. uses: peter-evans/dockerhub-description@432a30c9e07499fd01da9f8a49f0faf9e0ca5b77
  17. with:
  18. username: ${{ secrets.DOCKERHUB_USERNAME }}
  19. password: ${{ secrets.DOCKERHUB_TOKEN }}
  20. repository: freshrss/freshrss
  21. readme-filepath: Docker/README.md