From e5b970030ef537ea1820a49da5454d2aa7ef841d Mon Sep 17 00:00:00 2001 From: rulex123 <29862113+rulex123@users.noreply.github.com> Date: Sat, 30 Apr 2022 12:04:02 +0200 Subject: [PATCH] Revert "temporarily introduce a github action that can be (#231)" (#234) Signed-off-by: rulex123 --- .github/workflows/manual-update-protobuf.yml | 33 -------------------- 1 file changed, 33 deletions(-) delete mode 100644 .github/workflows/manual-update-protobuf.yml diff --git a/.github/workflows/manual-update-protobuf.yml b/.github/workflows/manual-update-protobuf.yml deleted file mode 100644 index 5dc72f5d8..000000000 --- a/.github/workflows/manual-update-protobuf.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: update-protobuf -on: - workflow_dispatch: - inputs: - envoy_version: - description: 'Envoy version to update to' - required: true - type: string - -jobs: - update-protobuf: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Run scripts - working-directory: ./tools/ - run: | - ./update-sha.sh ${{ github.event.inputs.envoy_version }} | tee API_SHAS - ./update-api.sh - - name: Create Pull Request - uses: peter-evans/create-pull-request@v3 - with: - branch: update-protobuf-to-${{ github.event.inputs.envoy_version }} - base: main - author: envoy-bot - committer: envoy-bot - signoff: true - title: '[protobuf] Update protobuf definitions to ${{ github.event.inputs.envoy_version }}' - commit-message: | - [protobuf] Update protobuf definitions to ${{ github.event.inputs.envoy_version }} - body: | - This is an automatic PR created by github action workflow: - - Updated protobuf files