dockerhub-description.yml 867 B

12345678910111213141516171819202122232425262728293031323334
  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. concurrency:
  12. group: update-dockerhub-description
  13. cancel-in-progress: false # Queue the description updates
  14. jobs:
  15. dockerhub-description:
  16. name: dockerhub-description
  17. if: github.repository_owner == 'FreshRSS'
  18. runs-on: ubuntu-latest
  19. steps:
  20. - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
  21. with:
  22. persist-credentials: false
  23. - name: Update repo description
  24. uses: peter-evans/dockerhub-description@1b9a80c056b620d92cedb9d9b5a223409c68ddfa
  25. with:
  26. username: ${{ secrets.DOCKERHUB_USERNAME }}
  27. password: ${{ secrets.DOCKERHUB_TOKEN }}
  28. repository: freshrss/freshrss
  29. readme-filepath: Docker/README.md