dockerhub-description.yml 676 B

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