Skip to content

Commit

Permalink
Change name to repo keeper
Browse files Browse the repository at this point in the history
  • Loading branch information
OLeonardoRodrigues committed Jul 19, 2022
1 parent e0f10f2 commit 87e4f87
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
File renamed without changes.
14 changes: 7 additions & 7 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM python:3.9-slim-buster

LABEL org.opencontainers.image.title="LRO Repo Scaffolder" \
org.opencontainers.image.description="Repository Scaffolder for GitHub." \
org.opencontainers.image.url="https://github.com/OLeonardoRodrigues/lro-repo-scaffolder/blob/main/README.md" \
org.opencontainers.image.documentation="https://github.com/OLeonardoRodrigues/lro-repo-scaffolder/wiki" \
org.opencontainers.image.source="https://github.com/OLeonardoRodrigues/lro-repo-scaffolder" \
LABEL org.opencontainers.image.title="Repo Keeper" \
org.opencontainers.image.description="Configuration Keeper for GitHub Repositories." \
org.opencontainers.image.url="https://github.com/OLeonardoRodrigues/repo-keeper/blob/main/README.md" \
org.opencontainers.image.documentation="https://github.com/OLeonardoRodrigues/repo-keeper/wiki" \
org.opencontainers.image.source="https://github.com/OLeonardoRodrigues/repo-keeper" \
org.opencontainers.image.licenses="GPL-3.0-only" \
org.opencontainers.image.vendor="Leonardo Rodrigues de Oliveira - OLeonardoRodrigues" \
org.opencontainers.image.base.name="registry.hub.docker.com/python/python:3.9-slim-buster" \
Expand Down Expand Up @@ -34,8 +34,8 @@ RUN apt-get update \
> gh_2.7.0_linux_amd64.deb \
&& dpkg -i ./gh_2.7.0_linux_amd64.deb

COPY --chown=python:python src lro_repo_scaffolder
COPY --chown=python:python src repo_keeper

USER python

CMD [ "python3.9", "-m" , "lro_repo_scaffolder"]
CMD [ "python3.9", "-m" , "repo_keeper"]
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ inputs:
config-file:
description: 'Configuration File Name or Path.'
required: false
default: '.lro_repo_scaffolder'
default: '.repo-keeper'

runs:
using: 'docker'
image: 'docker://ghcr.io/oleonardorodrigues/lro-repo-scaffolder:latest'
image: 'docker://ghcr.io/oleonardorodrigues/repo-keeper:latest'
env:
GH_PAT: ${{ inputs.github-pat }}
CONFIG_FILE: ${{ inputs.config-file }}

0 comments on commit 87e4f87

Please sign in to comment.