fix EDA-3048, EDA-3052 and add O_FAB inference #502
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: Increment Version | |
on: | |
pull_request: | |
types: [opened] | |
jobs: | |
increment-patch-version: | |
if: github.event.pull_request.head.repo.full_name == github.repository | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- name: Cancel previous | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
ref: ${{ github.event.pull_request.head.ref }} | |
- name: Increment patch version | |
run: | | |
bash scripts/increment_version.sh | |
- name: Commit changes | |
uses: EndBug/[email protected] | |
with: | |
message: 'Incremented patch version' | |
committer_name: GitHub Actions | |
add: 'CMakeLists.txt' |