EDF Files update: 2025.2.1 03130000 #3
This file contains hidden or 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: ypt | ||
| # Format: abc1234d | Commit message | #42 | ||
| run-name: "${{ github.sha }} | ${{ github.event.head_commit.message }} | #${{ github.run_number }}" | ||
| on: | ||
| push: | ||
| jobs: | ||
| patchwork: | ||
| # Only run if: | ||
| # - ypt_workflow_branches variable is defined AND branch is in the list | ||
| # - NOT the public "Xilinx" org | ||
| # - NOT a fork | ||
| if: | | ||
| vars.ypt_workflow_branches != '' && | ||
| contains(format(',{0},', vars.ypt_workflow_branches), format(',{0},', github.ref_name)) && | ||
| github.repository_owner != 'Xilinx' && | ||
| github.event.repository.fork == false | ||
| uses: AMD-AECG-SSW-PUBLIC/yocto-scripts/.github/workflows/ypt_patchwork_update.yml@master | ||
|
Check failure on line 20 in .github/workflows/ypt_patchwork_hook.yml
|
||
| with: | ||
| repo: ${{ github.repository }} | ||
| ref: ${{ github.ref }} | ||
| payload: ${{ toJson(github.event) }} | ||
| secrets: inherit | ||