Giter Site home page Giter Site logo

silvrwolfboy / dockerhub-description Goto Github PK

View Code? Open in Web Editor NEW

This project forked from peter-evans/dockerhub-description

0.0 1.0 0.0 1.79 MB

A GitHub action to update a Docker Hub repository description from README.md

License: MIT License

Shell 1.55% JavaScript 1.81% TypeScript 93.82% Dockerfile 2.83%

dockerhub-description's Introduction

Docker Hub Description

GitHub Marketplace

A GitHub action to update a Docker Hub repository description from README.md.

This is useful if you docker push your images to Docker Hub. It provides an easy, automated way to keep your Docker Hub repository description in sync with your GitHub repository README.md file.

Usage

    - uses: actions/checkout@v4

    - name: Docker Hub Description
      uses: peter-evans/dockerhub-description@v4
      with:
        username: ${{ secrets.DOCKERHUB_USERNAME }}
        password: ${{ secrets.DOCKERHUB_PASSWORD }}
        repository: peterevans/dockerhub-description

Action inputs

Name Description Default
username (required) Docker Hub username. If updating a Docker Hub repository belonging to an organization, this user must have Admin permissions for the repository.
password (required) Docker Hub password or Personal Access Token with read/write/delete scope.
repository Docker Hub repository in the format <namespace>/<name>. github.repository
short-description Docker Hub repository short description.
readme-filepath Path to the repository readme. ./README.md
enable-url-completion Enables completion of relative URLs to absolute ones. See also known Issues. false
image-extensions File extensions that will be treated as images. bmp,gif,jpg,jpeg,png,svg,webp

Content limits

DockerHub has content limits. The readme content is limited to 25,000 bytes, and short-description is limited to 100 bytes. This action truncates content to prevent the request being rejected. If the content has been truncated a warning will be issued in the run log.

Specifying the file path

The action assumes that there is a file called README.md located at the root of the repository. If this is not the case the path can be specified with the readme-filepath input.

    - name: Docker Hub Description
      uses: peter-evans/dockerhub-description@v4
      with:
        username: ${{ secrets.DOCKERHUB_USERNAME }}
        password: ${{ secrets.DOCKERHUB_PASSWORD }}
        repository: peterevans/dockerhub-description
        readme-filepath: ./path/to/README.md

Using the GitHub repository description

The GitHub repository description can be used for the Docker Hub short-descripton by passing the description from the event context.

    - name: Docker Hub Description
      uses: peter-evans/dockerhub-description@v4
      with:
        username: ${{ secrets.DOCKERHUB_USERNAME }}
        password: ${{ secrets.DOCKERHUB_PASSWORD }}
        repository: peterevans/dockerhub-description
        short-description: ${{ github.event.repository.description }}

Examples

The following workflow updates the Docker Hub repository description whenever there are changes to README.md and the workflow file itself on the main branch. This workflow assumes its location to be .github/workflows/dockerhub-description.yml.

name: Update Docker Hub Description
on:
  push:
    branches:
      - main
    paths:
      - README.md
      - .github/workflows/dockerhub-description.yml
jobs:
  dockerHubDescription:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v4

    - name: Docker Hub Description
      uses: peter-evans/dockerhub-description@v4
      with:
        username: ${{ secrets.DOCKERHUB_USERNAME }}
        password: ${{ secrets.DOCKERHUB_PASSWORD }}
        repository: peterevans/dockerhub-description
        short-description: ${{ github.event.repository.description }}
        enable-url-completion: true

Updates the Docker Hub repository description whenever a new release is created.

name: Update Docker Hub Description
on: release
jobs:
  dockerHubDescription:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v4

    - name: Docker Hub Description
      uses: peter-evans/dockerhub-description@v4
      with:
        username: ${{ secrets.DOCKERHUB_USERNAME }}
        password: ${{ secrets.DOCKERHUB_PASSWORD }}
        repository: peterevans/dockerhub-description
        short-description: ${{ github.event.repository.description }}

URL completion known Issues

The completion of relative URLs has some known issues:

  1. Relative markdown links in inline-code and code blocks are also converted:

    [link in inline code](#table-of-content)

    will be converted into

    [link in inline code](https://github.com/peter-evans/dockerhub-description/blob/main/./README.md#table-of-content)
  2. Links containing square brackets (]) in the text fragment are not converted:

    [[link text with square brackets]](#table-of-content)
  3. Reference-style links/images are not converted.

    [table-of-content][toc]
    
    ...
    
    [toc]: #table-of-content "Table of content"

Using the Docker image independently of GitHub Actions

The image can be executed in other environments independently of GitHub Actions. Simply volume mount the location of the README.md file to the container and set environment variables as follows.

docker run -v $PWD:/workspace \
  -e DOCKERHUB_USERNAME='user1' \
  -e DOCKERHUB_PASSWORD='xxxxx' \
  -e DOCKERHUB_REPOSITORY='user1/my-docker-image' \
  -e README_FILEPATH='/workspace/README.md' \
  peterevans/dockerhub-description:3

License

MIT

dockerhub-description's People

Contributors

dependabot[bot] avatar peter-evans avatar actions-bot avatar syntaqx avatar jennydaman avatar devatherock avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.