Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: docker failing witn the input device is not a TTY #261

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 22 additions & 18 deletions .github/workflows/sync.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
name: 🏗️ sync
on:
workflow_dispatch:
pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
env:
DOCKER_NON_INTERACTIVE: true
jobs:
sync-hub:
runs-on: buildjet-2vcpu-ubuntu-2204
#runs-on: buildjet-2vcpu-ubuntu-2204
runs-on: ubuntu-latest
steps:
- name: checkout hub-doc repo
uses: actions/checkout@v4
Expand All @@ -20,20 +24,20 @@ jobs:
run: |
cd ${{ github.workspace }}/hub-doc
make sync
- name: create PR
uses: peter-evans/create-pull-request@v6
with:
token: ${{ secrets.TRAEFIKER_GITHUB_TOKEN }}
path: hub-doc
commit-message: "chore: update tutorials"
committer: "Traefiker <[email protected]>"
author: "${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>"
signoff: false
branch: update-files-${{ github.ref_name }}
delete-branch: true
title: 'chore: update tutorials'
labels: kind/enhancement,status/2-needs-review
body: |
### Motivation
Update tutorials with latest verified code.
#- name: create PR
# uses: peter-evans/create-pull-request@v6
# with:
# token: ${{ secrets.TRAEFIKER_GITHUB_TOKEN }}
# path: hub-doc
# commit-message: "chore: update tutorials"
# committer: "Traefiker <[email protected]>"
# author: "${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>"
# signoff: false
# branch: update-files-${{ github.ref_name }}
# delete-branch: true
# title: 'chore: update tutorials'
# labels: kind/enhancement,status/2-needs-review
# body: |
# ### Motivation
#
# Update tutorials with latest verified code.
Loading