[BUG]When modifying parameters for components with a configuration file of type "properties", the ConfigConstraint do not take effect #1469
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: CHERRY-PICK | |
on: | |
issue_comment: | |
types: [created] | |
jobs: | |
cherry-pick: | |
name: Cherry Pick | |
if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '/cherry-pick') | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
fetch-depth: 0 | |
- name: Automatic Cherry Pick | |
uses: apecloud/gha-cherry-pick@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |