diff --git a/.github/settings.yml b/.github/settings.yml index dd67973..bdad042 100644 --- a/.github/settings.yml +++ b/.github/settings.yml @@ -130,7 +130,7 @@ branches: # Required. Require branches to be up to date before merging. strict: true # Required. The list of status checks to require in order to merge into this branch - contexts: [pre-commit, sync, release] + contexts: [pre-commit, release] # Required. Enforce all configured restrictions for administrators. Set to true to enforce required status checks for repository administrators. Set to null to disable. enforce_admins: null # Prevent merge commits from being pushed to matching branches diff --git a/.github/template-sync.yml b/.github/template-sync.yml deleted file mode 100644 index 7abffc1..0000000 --- a/.github/template-sync.yml +++ /dev/null @@ -1,15 +0,0 @@ ---- -additional: -- temp - -files: -- '!Dockerfile' -- '!README.md' -- '!.gitignore' -- '!.pre-commit-config.yaml' -- '!.yamllint' -- '!.secrets.baseline' -- '!.github/pull.yml' -- '!.github/dependabot.yml' -- '!.github/template-sync.yml' -- '!.github/workflows/pre-commit-update.yml' diff --git a/.github/workflows/sync.yml b/.github/workflows/sync.yml deleted file mode 100644 index 85d0f97..0000000 --- a/.github/workflows/sync.yml +++ /dev/null @@ -1,21 +0,0 @@ ---- -name: Sync the template repository - -on: # yamllint disable-line rule:truthy - pull_request: - push: - branches: main - -jobs: - sync: - runs-on: ubuntu-latest - - steps: - - name: Queue - uses: ahmadnassri/action-workflow-queue@v1.2 - - name: Checkout - uses: actions/checkout@v4.1.1 - - name: Sync - uses: ahmadnassri/action-template-repository-sync@v2.5.0 - with: - github-token: ${{ secrets.GH_TOKEN }} diff --git a/.releaserc b/.releaserc index f373399..dbe469f 100644 --- a/.releaserc +++ b/.releaserc @@ -1,7 +1,7 @@ { "branches": ["main"], "tagFormat": "${version}", - "repositoryUrl": "https://github.com/hutchic-org/template-ghcr-release.git", + "repositoryUrl": "https://github.com/hutchic-org/docker-websocat.git", "plugins": [ [ "@semantic-release/commit-analyzer", diff --git a/Dockerfile b/Dockerfile index ce6d112..58cc58e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,5 @@ -FROM ubuntu:focal +FROM alpine:latest@sha256:51b67269f354137895d43f3b3d810bfacd3945438e94dc5ac55fdac340352f48 -RUN touch touchfile +RUN apk add --no-cache websocat + +ENTRYPOINT ["websocat"]