Validate order number uniqueness only when it changes #1302
Workflow file for this run
This file contains hidden or 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: "Update Release Draft on GitHub" | |
| on: | |
| workflow_dispatch: | |
| pull_request_target: | |
| branches: | |
| - main | |
| - v* | |
| types: | |
| - closed | |
| jobs: | |
| update: | |
| runs-on: ubuntu-latest | |
| env: | |
| BUNDLE_ONLY: "release" | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| if: | | |
| (github.event_name == 'workflow_dispatch') || ( | |
| (github.event.pull_request.merged == true) && | |
| !contains(github.event.pull_request.labels.*.name, 'changelog:skip') | |
| ) | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: "3.2" | |
| bundler-cache: true | |
| - id: pipeline_context | |
| uses: ./.github/actions/extract_pipeline_context | |
| - name: "Save Release Draft" | |
| run: | | |
| bin/release/update-release-draft \ | |
| --update \ | |
| --branch ${{ github.ref_name }} \ | |
| ${{ steps.pipeline_context.outputs.current_diff_source_tag }} \ | |
| ${{ steps.pipeline_context.outputs.candidate_tag }} |