From dfdd461a73553f389671af4c1f05c17777e3771d Mon Sep 17 00:00:00 2001 From: "ry.yamafuji" Date: Thu, 4 Dec 2025 12:44:24 +0900 Subject: [PATCH] =?UTF-8?q?=E3=83=AA=E3=83=B3=E3=82=BF=E3=83=BC=E3=81=AE?= =?UTF-8?q?=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/pyruff.yml | 24 +----------------------- 1 file changed, 1 insertion(+), 23 deletions(-) diff --git a/.github/workflows/pyruff.yml b/.github/workflows/pyruff.yml index ae3bf89..9d93455 100644 --- a/.github/workflows/pyruff.yml +++ b/.github/workflows/pyruff.yml @@ -32,33 +32,11 @@ jobs: pip install -r requirements.txt pip install -r requirements-dev.txt - - # - name: Run Ruff Lint - # id: runRuffLint - # run: | - - - name: pull_request message with Ruff Lint results id: prMessageRuffLint run: | curl -X POST \ -H "Content-Type: application/json" \ - -H "Authorization: token ${GITEA_TOKEN}" \ + -H "Authorization: token ${{ secrets.GITEA_TOKEN }}" \ -d "{\"body\": \"## :mag: Ruff Lint Results\n\`\`\`\ntest\n\`\`\`\"}" \ ${{ gitea.server_url }}/api/v1/repos/${{ gitea.repository }}/issues/${{ github.event.pull_request.number }}/comments - env: - GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }} - - - - # github - # - name: pull_request message with Ruff Lint results - # id: prMessageRuffLint - # uses: marocchino/sticky-pull-request-comment@v2 - # with: - # header: "## :mag: Ruff Lint Results" - # message: | - # ``` - # test - # ``` -