From eeea36bd7f08f4e2d2af34154eece943f2079c67 Mon Sep 17 00:00:00 2001 From: fffk10 Date: Wed, 5 Nov 2025 08:34:23 +0900 Subject: [PATCH 1/2] =?UTF-8?q?chore:=20=E3=81=8A=E8=A9=A6=E3=81=97?= =?UTF-8?q?=E7=94=A8=E3=81=AEworkflow=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test-required-workflow.yml | 29 ++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/test-required-workflow.yml diff --git a/.github/workflows/test-required-workflow.yml b/.github/workflows/test-required-workflow.yml new file mode 100644 index 0000000..387d044 --- /dev/null +++ b/.github/workflows/test-required-workflow.yml @@ -0,0 +1,29 @@ +# Org横断でworkflowを必須にできるかを試すためのworkflowです +# 試し終わったら消します +name: Test Workflow + +on: + push: + branches: [main, master] + pull_request: + branches: [main, master] + workflow_dispatch: + +jobs: + test: + runs-on: ubuntu-latest + permissions: + contents: read + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Run test + run: echo "Test workflow is running successfully!" + + - name: Display system information + run: | + echo "Operating System: $(uname -s)" + echo "Kernel Version: $(uname -r)" + echo "Architecture: $(uname -m)" From 88c86c041655681c208c8bb3db5bc0e6bbf4dd23 Mon Sep 17 00:00:00 2001 From: fffk10 Date: Wed, 5 Nov 2025 08:51:34 +0900 Subject: [PATCH 2/2] pin --- .github/workflows/test-required-workflow.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-required-workflow.yml b/.github/workflows/test-required-workflow.yml index 387d044..914dd83 100644 --- a/.github/workflows/test-required-workflow.yml +++ b/.github/workflows/test-required-workflow.yml @@ -17,7 +17,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 - name: Run test run: echo "Test workflow is running successfully!"