| 12345678910111213141516171819202122232425262728293031323334 |
- name: Update Docker Hub description
- on:
- push:
- paths:
- - Docker/README.md
- branches:
- - edge
- workflow_dispatch:
- permissions:
- contents: read
- concurrency:
- group: update-dockerhub-description
- cancel-in-progress: false # Queue the description updates
- jobs:
- dockerhub-description:
- name: dockerhub-description
- if: github.repository_owner == 'FreshRSS'
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- with:
- persist-credentials: false
- - name: Update repo description
- uses: peter-evans/dockerhub-description@1b9a80c056b620d92cedb9d9b5a223409c68ddfa
- with:
- username: ${{ secrets.DOCKERHUB_USERNAME }}
- password: ${{ secrets.DOCKERHUB_TOKEN }}
- repository: freshrss/freshrss
- readme-filepath: Docker/README.md
|