From b0cb1dec89f17791c2c25c77e5bfff4f594cab2b Mon Sep 17 00:00:00 2001 From: rot1024 Date: Fri, 4 Oct 2024 19:24:11 +0900 Subject: [PATCH 1/2] ci: fix labeler --- .github/labeler.yml | 12 ++++++++---- .github/workflows/pr-title.yml | 2 +- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index 961c0670d..8af381c40 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,8 +1,12 @@ plugin: - - web/**/* + - changed-files: + - any-glob-to-any-file: web/**/* server: - - server/**/* + - changed-files: + - any-glob-to-any-file: server/**/* terraform: - - terraform/**/* + - changed-files: + - any-glob-to-any-file: terraform/**/* ci: - - .github/workflows/** \ No newline at end of file + - changed-files: + - any-glob-to-any-file: .github/workflows/** diff --git a/.github/workflows/pr-title.yml b/.github/workflows/pr-title.yml index e2b1a6059..6ebad84b1 100644 --- a/.github/workflows/pr-title.yml +++ b/.github/workflows/pr-title.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: actions/labeler@v4 + - uses: actions/labeler@v5 with: repo-token: ${{ secrets.GITHUB_TOKEN }} - uses: amannn/action-semantic-pull-request@v5 From e377af92532a12e98913a4f48fef1846a1adf8cf Mon Sep 17 00:00:00 2001 From: rot1024 Date: Fri, 4 Oct 2024 19:26:38 +0900 Subject: [PATCH 2/2] remove qemu --- .github/workflows/build-worker.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/build-worker.yml b/.github/workflows/build-worker.yml index ae471edb2..2a5e9149b 100644 --- a/.github/workflows/build-worker.yml +++ b/.github/workflows/build-worker.yml @@ -10,8 +10,6 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 - - name: Set up QEMU - uses: docker/setup-qemu-action@v2 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 - name: Build and load docker image