diff --git a/.github/ISSUE_TEMPLATE/3_bug_report.yml b/.github/ISSUE_TEMPLATE/3_bug_report.yml index cc3d8994649..62ed83f1e13 100644 --- a/.github/ISSUE_TEMPLATE/3_bug_report.yml +++ b/.github/ISSUE_TEMPLATE/3_bug_report.yml @@ -57,6 +57,7 @@ body: label: KEDA Version description: What version of KEDA that are you running? options: + - "2.13.0" - "2.12.1" - "2.12.0" - "2.11.2" diff --git a/.github/workflows/pr-welcome.yml b/.github/workflows/pr-welcome.yml index 0a6a36d9ad5..978aacd12b0 100644 --- a/.github/workflows/pr-welcome.yml +++ b/.github/workflows/pr-welcome.yml @@ -17,9 +17,9 @@ jobs: name: PR Bot runs-on: ubuntu-latest steps: - - name: 'Add welcome comment on PR (draft)' + - name: 'Add welcome comment on PR #${{ github.event.number }} (draft)' uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7 - if: "github.event.pull_request.draft" + if: github.event_name == 'pull_request_target' && github.event.pull_request.draft with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | @@ -29,9 +29,9 @@ jobs: issue_number: ${{ github.event.number }}, body: 'Thank you for your contribution! 🙏 Let us know when you are ready for a review by publishing the PR.' }); - - name: 'Add welcome comment on PR' + - name: 'Add welcome comment on PR #${{ github.event.number }}' uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7 - if: "!github.event.pull_request.draft" + if: github.event_name == 'pull_request_target' && !github.event.pull_request.draft with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | @@ -43,7 +43,7 @@ jobs: }); - name: 'Apply review required label' uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7 - if: "!github.event.pull_request.draft" + if: github.event_name == 'pull_request_review' && (github.event.review.state != 'submitted' || github.event.review.state != 'edited') with: script: | github.rest.issues.addLabels({ diff --git a/CHANGELOG.md b/CHANGELOG.md index 29a81907883..374bc41c821 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ To learn more about active deprecations, we recommend checking [GitHub Discussio ## History - [Unreleased](#unreleased) +- [v2.13.0](#v2130) - [v2.12.1](#v2121) - [v2.12.0](#v2120) - [v2.11.2](#v2112) @@ -51,7 +52,42 @@ To learn more about active deprecations, we recommend checking [GitHub Discussio ### New -- **General**: Adds support for AWS Secret Manager as a source for TriggerAuthentication ([#4628](https://github.com/kedacore/keda/issues/4628)) +- **General**: TODO ([#XXX](https://github.com/kedacore/keda/issues/XXX)) + +#### Experimental + +Here is an overview of all new **experimental** features: + +- **General**: TODO ([#XXX](https://github.com/kedacore/keda/issues/XXX)) + +### Improvements + +- **General**: TODO ([#XXX](https://github.com/kedacore/keda/issues/XXX)) + +### Fixes + +- **General**: TODO ([#XXX](https://github.com/kedacore/keda/issues/XXX)) + +### Deprecations + +You can find all deprecations in [this overview](https://github.com/kedacore/keda/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc+label%3Abreaking-change) and [join the discussion here](https://github.com/kedacore/keda/discussions/categories/deprecations). + +New deprecation(s): + +- TODO ([#XXX](https://github.com/kedacore/keda/issues/XXX)) + +### Breaking Changes + +- **General**: TODO ([#XXX](https://github.com/kedacore/keda/issues/XXX)) + +### Other + +- **General**: TODO ([#XXX](https://github.com/kedacore/keda/issues/XXX)) + +## v2.13.0 + +### New + - **General**: Adds support for GCP Secret Manager as a source for TriggerAuthentication ([#4831](https://github.com/kedacore/keda/issues/4831)) - **General**: Introduce new AWS Authentication ([#4134](https://github.com/kedacore/keda/issues/4134))