diff options
Diffstat (limited to 'fluent-bit/.github/workflows/update-dockerhub.yaml')
-rw-r--r-- | fluent-bit/.github/workflows/update-dockerhub.yaml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/fluent-bit/.github/workflows/update-dockerhub.yaml b/fluent-bit/.github/workflows/update-dockerhub.yaml new file mode 100644 index 00000000..cdd5dbe1 --- /dev/null +++ b/fluent-bit/.github/workflows/update-dockerhub.yaml @@ -0,0 +1,23 @@ +--- +name: Update Dockerhub description + +on: + workflow_dispatch: + +jobs: + update-dockerhub: + name: Update Dockerhub description + permissions: + contents: read + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Docker Hub Description + uses: peter-evans/dockerhub-description@v3 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + repository: ${{ github.repository }} + readme-filepath: ./dockerfiles/dockerhub-description.md + short-description: 'Fluent Bit, lightweight logs and metrics collector and forwarder' |