mirror of
https://github.com/jesseduffield/lazydocker.git
synced 2026-07-25 08:31:03 +00:00
Complete rename of the project from lazydocker to lazypodman: - Update Go module to github.com/christophe-duc/lazypodman - Update all import statements across 51 Go files - Update binary name, descriptions, and CLI help text - Update config directory paths to christophe-duc/lazypodman - Update all 9 i18n language files with new strings - Update scripts (install_update_linux.sh, update_docs.sh) - Update config files (docker-compose.yml, .goreleaser.yml, etc.) - Update documentation (README.md, CONTRIBUTING.md, docs/) This is the foundational step before replacing Docker SDK with libpod bindings for native Podman support. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
28 lines
879 B
YAML
28 lines
879 B
YAML
# see https://github.com/JamesIves/github-sponsors-readme-action
|
|
name: Generate Sponsors README
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout 🛎️
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Generate Sponsors 💖
|
|
uses: JamesIves/github-sponsors-readme-action@v1.2.2
|
|
with:
|
|
token: ${{ secrets.TOKEN_GITHUB }}
|
|
file: "README.md"
|
|
if: ${{ github.repository == 'christophe-duc/lazypodman' }}
|
|
|
|
- name: Create Pull Request 🚀
|
|
uses: peter-evans/create-pull-request@v6
|
|
with:
|
|
commit-message: "README.md: Update Sponsors"
|
|
title: "README.md: Update Sponsors"
|
|
author: "github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>"
|
|
labels: "ignore-for-release"
|
|
delete-branch: true
|