From 76b3c35b15373d73cebf4105031b0d624122ca85 Mon Sep 17 00:00:00 2001 From: "Felix T.J. Dietrich" Date: Mon, 2 Sep 2024 15:41:20 +0200 Subject: [PATCH] change label name --- .github/workflows/generate-api-client.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/generate-api-client.yml b/.github/workflows/generate-api-client.yml index 8895203e..7fdc80c5 100644 --- a/.github/workflows/generate-api-client.yml +++ b/.github/workflows/generate-api-client.yml @@ -60,7 +60,7 @@ jobs: name: Commit and Push API Client Changes runs-on: ubuntu-latest needs: generate-api-client - if: ${{ github.event.label.name == 'autocommit-api' }} + if: ${{ github.event.label.name == 'autocommit-openapi' }} steps: - name: Checkout repository uses: actions/checkout@v4 @@ -100,4 +100,4 @@ jobs: run: | echo "Removing the autocommit-api label..." curl -s -X DELETE -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ - https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/labels/autocommit-api \ No newline at end of file + https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/labels/autocommit-openapi \ No newline at end of file