feat: create initial release #2
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 <[email protected]> | |
| # | |
| # SPDX-License-Identifier: Apache-2.0 | |
| --- | |
| name: "Generation Renovate" | |
| on: | |
| pull_request: | |
| branches: | |
| - "main" | |
| merge_group: | |
| types: | |
| - "checks_requested" | |
| permissions: {} # yamllint disable-line rule:braces | |
| concurrency: | |
| cancel-in-progress: true | |
| group: > | |
| ${{ github.workflow_ref }}-${{ github.ref }} | |
| jobs: | |
| generation-renovate: | |
| name: "Generation Renovate" | |
| if: | | |
| github.event.pull_request.user.login == 'renovate[bot]' | |
| && github.ref == 'refs/heads/bot/dependencies-dev-generation' | |
| permissions: | |
| contents: "read" | |
| # yamllint disable rule:line-length | |
| uses: "open-nudge/opentemplate/.github/workflows/generation-reusable.yml@main" # zizmor: ignore[unpinned-uses] | |
| # yamllint enable rule:line-length | |
| ... |