summaryrefslogtreecommitdiffstats
path: root/fluent-bit/.github/workflows/update-dockerhub.yaml
blob: cdd5dbe16deb2c0d2f3830a0748c4118ad948bd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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'