mirror of
https://github.com/dmunozv04/iSponsorBlockTV.git
synced 2025-12-25 00:48:27 +03:00
30 lines
696 B
YAML
30 lines
696 B
YAML
name: update docker description
|
|
|
|
# Controls when the workflow will run
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'main'
|
|
tags:
|
|
- 'v*'
|
|
paths:
|
|
- 'README.md'
|
|
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
# Get the repository's code
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
# Update description
|
|
- name: Update repo description
|
|
uses: peter-evans/dockerhub-description@v3
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
repository: dmunozv04/isponsorblocktv
|
|
short-description: ${{ github.event.repository.description }} |