Skip to content

Submodule update: stop dumping wire attributes to fix EDA-2768 #423

Submodule update: stop dumping wire attributes to fix EDA-2768

Submodule update: stop dumping wire attributes to fix EDA-2768 #423

Workflow file for this run

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'