Skip to content

.github/workflows/test.yml のタイポを修正 #6

.github/workflows/test.yml のタイポを修正

.github/workflows/test.yml のタイポを修正 #6

Workflow file for this run

name: pull request
on:
pull_request:
types: [opened, reopened, review_requested, synchronize]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
id-token: write
contents: read
jobs:
# 最初にworkflowファイル全体をチェックする
check-workflows:
permissions:
contents: read
uses: ./.github/workflows/check-workflows.yml
# workflowファイル全体のチェックが終わったら、テストを実行する
test:
needs: check-workflows
permissions:
contents: read
secrets: inherit
uses: ./.github/workflows/test.yml
# cdk diffの結果をコメントする
# このリポジトリとAWS環境のOpen ID Connect等による接続が確立したらコメントを外すと良い
#cdk-diff-comment:
# needs: check-workflows
# if: github.actor != 'dependabot[bot]'
# permissions:
# id-token: write
# contents: write
# pull-requests: write
# secrets: inherit
# uses: ./.github/workflows/post-cdk-diff.yml