From fddf8c8df8e38ffd9214d6220140f9275640f636 Mon Sep 17 00:00:00 2001 From: Stanislav Zhuk Date: Tue, 22 Oct 2024 02:19:01 +0300 Subject: [PATCH] build: disable repo tagging for devcontainers, for #6613 (#6625) --- .../devcontainer-feature-release.yaml | 47 ------------------- .github/workflows/master-build.yml | 2 +- 2 files changed, 1 insertion(+), 48 deletions(-) delete mode 100644 .github/workflows/devcontainer-feature-release.yaml diff --git a/.github/workflows/devcontainer-feature-release.yaml b/.github/workflows/devcontainer-feature-release.yaml deleted file mode 100644 index a522f2b0fb4..00000000000 --- a/.github/workflows/devcontainer-feature-release.yaml +++ /dev/null @@ -1,47 +0,0 @@ -name: "Release dev container features & Generate Documentation" -on: - workflow_dispatch: - -jobs: - deploy: - if: ${{ github.ref == 'refs/heads/master' }} - runs-on: ubuntu-latest - permissions: - contents: write - pull-requests: write - packages: write - steps: - - uses: actions/checkout@v4 - - - name: "Publish Features" - uses: devcontainers/action@v1 - with: - publish-features: "true" - base-path-to-features: ".github/devcontainers/src" - generate-docs: "false" - - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - -# - name: Create PR for Documentation -# id: push_image_info -# env: -# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} -# run: | -# set -e -# echo "Start." -# # Configure git and Push updates -# git config --global user.email github-actions@github.com -# git config --global user.name github-actions -# git config pull.rebase false -# branch=automated-documentation-update-$GITHUB_RUN_ID -# git checkout -b $branch -# message='Automated documentation update' -# # Add / update and commit -# git add */**/README.md -# git commit -m 'Automated documentation update [skip ci]' || export NO_UPDATES=true -# # Push -# if [ "$NO_UPDATES" != "true" ] ; then -# git push origin "$branch" -# gh pr create --title "$message" --body "$message" -# fi diff --git a/.github/workflows/master-build.yml b/.github/workflows/master-build.yml index 375f1e7ddc0..f9903c2ba38 100644 --- a/.github/workflows/master-build.yml +++ b/.github/workflows/master-build.yml @@ -369,6 +369,7 @@ jobs: publish-features: "true" base-path-to-features: "./containers/devcontainers" devcontainer-cli-version: "0.53.0" + disable-repo-tagging: "true" push-gitpod-base: name: Push ddev-gitpod-base docker image @@ -417,4 +418,3 @@ jobs: set -x make push VERSION="${GITHUB_REF##*/}" DOCKER_ORG=${DOCKER_ORG} popd >/dev/null -