Skip to content

chore(pull_request.yml): simplify success job by removing conditional checks for build result to streamline workflow execution #20

chore(pull_request.yml): simplify success job by removing conditional checks for build result to streamline workflow execution

chore(pull_request.yml): simplify success job by removing conditional checks for build result to streamline workflow execution #20

Workflow file for this run

name: "🔄 Pull Request"
on:
pull_request:
types: [ opened, synchronize, reopened, converted_to_draft, ready_for_review ]
concurrency:
group: "${{ github.workflow }}-${{ github.event.pull_request.number }}"
cancel-in-progress: true
jobs:
build:
uses: ./.github/workflows/build.yml
success:
runs-on: ubuntu-latest
needs: [ build ]
steps:
- name: "✅ Success"
run: echo "::notice title={Success}::This step triggers auto merge if all dependencies are met."