fix: update release process #9
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
| # SPDX-FileCopyrightText: © 2025 open-nudge <https://github.com/open-nudge> | |
| # SPDX-FileContributor: szymonmaszke <github@maszke.co> | |
| # | |
| # SPDX-License-Identifier: Apache-2.0 | |
| --- | |
| name: "Legal Renovate" | |
| on: | |
| pull_request: | |
| branches: | |
| - "main" | |
| merge_group: | |
| types: | |
| - "checks_requested" | |
| permissions: {} # yamllint disable-line rule:braces | |
| concurrency: | |
| group: > | |
| ${{ github.workflow_ref }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| legal-renovate: | |
| name: "Legal Renovate" | |
| if: | | |
| github.event.pull_request.user.login == 'renovate[bot]' | |
| && github.ref == 'refs/heads/bot/dependencies-dev-legal' | |
| permissions: | |
| contents: "read" | |
| # yamllint disable rule:line-length | |
| uses: "open-nudge/opentemplate/.github/workflows/legal-reusable.yml@main" # zizmor: ignore[unpinned-uses] | |
| # yamllint enable rule:line-length | |
| ... |