chore(pull_request.yml): simplify success job by removing conditional checks for build result to streamline workflow execution #20
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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." |