From cc096703b26d97bf5955e6c2f842d064cad3b225 Mon Sep 17 00:00:00 2001 From: yskoka Date: Tue, 9 Dec 2025 15:33:36 +0900 Subject: [PATCH 1/6] =?UTF-8?q?=E3=82=A4=E3=83=B3=E3=83=87=E3=83=B3?= =?UTF-8?q?=E3=83=88=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 34d5ba5a..3976d167 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ -# [OCI チュートリアル](https://oracle-japan.github.io/ocitutorials/) +# [OCI チュートリアル](https://oracle-japan.github.io/ocitutorials/) 本コンテンツは、作成者が誠心誠意作成しておりますが、万が一、本ドキュメントの間違いや、不正確な記述などを見つけられた場合は、 Issue 登録にてご連絡ください。 From 61812adb282a74ca3faba65d7b068a709f90c393 Mon Sep 17 00:00:00 2001 From: Yusaku Oka Date: Tue, 9 Dec 2025 15:38:25 +0900 Subject: [PATCH 2/6] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3976d167..25793e8c 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,4 @@ -# [OCI チュートリアル](https://oracle-japan.github.io/ocitutorials/) +# [OCI チュートリアル](https://oracle-japan.github.io/ocitutorials/) 本コンテンツは、作成者が誠心誠意作成しておりますが、万が一、本ドキュメントの間違いや、不正確な記述などを見つけられた場合は、 Issue 登録にてご連絡ください。 + From b3ee0d2e0846e7e55f801ceefebbf78be8983840 Mon Sep 17 00:00:00 2001 From: Yusaku Oka Date: Tue, 9 Dec 2025 15:41:36 +0900 Subject: [PATCH 3/6] Update auto-pr.yml --- .github/workflows/auto-pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/auto-pr.yml b/.github/workflows/auto-pr.yml index 5267ee0b..c6aefcfb 100644 --- a/.github/workflows/auto-pr.yml +++ b/.github/workflows/auto-pr.yml @@ -19,7 +19,7 @@ jobs: BRANCH_NAME="${GITHUB_REF#refs/heads/}" echo "Branch: $BRANCH_NAME" - PRS=$(curl -s -H "Authorization: token ${{ secret.GITHUB_TOKEN }}" \ + PRS=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ "https://api.github.com/repos/${{ github.repository }}/pulls?state=open") MATCHING_PR=$(echo "$PRS" | jq -r --arg branch "$BRANCH_NAME" '.[] | select(.head.ref == $branch) | .number') From 0d3542c0285bdc6fdf63231c226911b1a823df40 Mon Sep 17 00:00:00 2001 From: Yusaku Oka Date: Tue, 9 Dec 2025 15:58:11 +0900 Subject: [PATCH 4/6] Update auto-pr.yml --- .github/workflows/auto-pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/auto-pr.yml b/.github/workflows/auto-pr.yml index c6aefcfb..1a1d2f7c 100644 --- a/.github/workflows/auto-pr.yml +++ b/.github/workflows/auto-pr.yml @@ -19,7 +19,7 @@ jobs: BRANCH_NAME="${GITHUB_REF#refs/heads/}" echo "Branch: $BRANCH_NAME" - PRS=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ + PRS=$(curl -s -H "Authorization: token ${{ github.token }}" \ "https://api.github.com/repos/${{ github.repository }}/pulls?state=open") MATCHING_PR=$(echo "$PRS" | jq -r --arg branch "$BRANCH_NAME" '.[] | select(.head.ref == $branch) | .number') From d108d3f7a1d374687b88b276ce27f82d0c992dd4 Mon Sep 17 00:00:00 2001 From: Yusaku Oka Date: Tue, 9 Dec 2025 16:08:00 +0900 Subject: [PATCH 5/6] Update auto-pr.yml --- .github/workflows/auto-pr.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/auto-pr.yml b/.github/workflows/auto-pr.yml index 1a1d2f7c..7cb358d5 100644 --- a/.github/workflows/auto-pr.yml +++ b/.github/workflows/auto-pr.yml @@ -19,7 +19,7 @@ jobs: BRANCH_NAME="${GITHUB_REF#refs/heads/}" echo "Branch: $BRANCH_NAME" - PRS=$(curl -s -H "Authorization: token ${{ github.token }}" \ + PRS=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ "https://api.github.com/repos/${{ github.repository }}/pulls?state=open") MATCHING_PR=$(echo "$PRS" | jq -r --arg branch "$BRANCH_NAME" '.[] | select(.head.ref == $branch) | .number') @@ -37,7 +37,7 @@ jobs: uses: actions/github-script@v7 if: steps.check_pr.outputs.exists == 'false' with: - github-token: ${{ secrets.AUTO_PR_CREATE_TOKEN }} + github-token: ${{ secrets.GITHUB_TOKEN }} script: | const headRef = '${{ github.ref_name }}' const createParams = { From 959b4a565f6e2a36b4f8d477049132885a91cb31 Mon Sep 17 00:00:00 2001 From: Yusaku Oka Date: Tue, 9 Dec 2025 16:10:06 +0900 Subject: [PATCH 6/6] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 25793e8c..9d166a28 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ -# [OCI チュートリアル](https://oracle-japan.github.io/ocitutorials/) +# [OCI チュートリアル](https://oracle-japan.github.io/ocitutorials/) 本コンテンツは、作成者が誠心誠意作成しておりますが、万が一、本ドキュメントの間違いや、不正確な記述などを見つけられた場合は、 Issue 登録にてご連絡ください。 +