chore(master): release 1.45.2 #288
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
# makes sure that all files have the required version information | |
# This only runs when the release-please action has labeled a release pull request | |
# so before it is merged, this ensures that all the files have the correct version | |
name: sync versions | |
on: | |
workflow_dispatch: | |
pull_request: | |
types: [opened, reopened, labeled] | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
sync-versions: | |
# if: "${{ contains(github.event.pull_request.labels.*.name, 'autorelease: pending') }}" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Sync version with manifest and versions.json | |
run: node version-bump.mjs | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: "chore: sync versions" |