File tree Expand file tree Collapse file tree 10 files changed +120
-23
lines changed Expand file tree Collapse file tree 10 files changed +120
-23
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ name : Bug Report
3+ about : Report a bug
4+ labels : kind/bug
5+
6+ ---
7+
8+ ** What happened** :
9+
10+ ** What you expected to happen** :
11+
12+ ** How to reproduce it (as minimally and precisely as possible)** :
13+
14+ ** Anything else we need to know** :
15+
16+ ** Environment** :
Original file line number Diff line number Diff line change 1+ ---
2+ name : Enhancement Request
3+ about : Suggest an enhancement
4+ labels : kind/enhancement
5+
6+ ---
7+
8+ ** What would you like to be added** :
9+
10+ ** Why is this needed** :
Original file line number Diff line number Diff line change 1+ ** What this PR does / why we need it** :
2+
3+ ** Which issue(s) this PR fixes** :
4+ Fixes #
5+
6+ ** Special notes for your reviewer** :
7+
8+ ** Release note** :
9+ <!-- Write your release note:
10+ 1. Enter your release note in the below block.
11+ 2. If no release note is required, just write "NONE" within the block.
12+
13+ Format of block header: <category> <target_group>
14+ Possible values:
15+ - category: breaking|feature|bugfix|doc|other
16+ - target_group: user|operator|developer|dependency
17+ -->
18+ ``` feature user
19+
20+ ```
Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ tags :
6+ - v*
7+ branches :
8+ - master
9+ - main
10+ pull_request :
11+
12+ permissions :
13+ contents : write
14+
15+ jobs :
16+ build_validate_test :
17+ uses : openmcp-project/build/.github/workflows/ci.lib.yaml@main
18+ secrets : inherit
File renamed without changes.
Original file line number Diff line number Diff line change 1+ name : Publish
2+
3+ on :
4+ push :
5+ tags :
6+ - v*
7+ workflow_dispatch :
8+
9+ permissions :
10+ packages : write
11+
12+ jobs :
13+ release_publish :
14+ uses : openmcp-project/build/.github/workflows/publish.lib.yaml@main
15+ secrets : inherit
Original file line number Diff line number Diff line change 1+ name : Versioned Release
2+
3+ on :
4+ push :
5+ branches :
6+ - main
7+
8+ permissions :
9+ contents : write # we need this to be able to push tags
10+ pull-requests : read
11+
12+ jobs :
13+ release_tag :
14+ uses : openmcp-project/build/.github/workflows/release.lib.yaml@main
15+ secrets : inherit
Original file line number Diff line number Diff line change 1+ name : REUSE Compliance Check
2+
3+ on : [push, pull_request]
4+
5+ permissions :
6+ contents : read
7+
8+ jobs :
9+ run_reuse :
10+ uses : openmcp-project/build/.github/workflows/reuse.lib.yaml@main
11+ secrets : inherit
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name : Validate Pull Request Content
2+
3+ on :
4+ pull_request :
5+ types :
6+ - opened
7+ - edited
8+
9+ permissions :
10+ contents : read
11+
12+ jobs :
13+ validate_pr_content :
14+ uses : openmcp-project/build/.github/workflows/validate-pr-content.lib.yaml@main
15+ secrets : inherit
You can’t perform that action at this time.
0 commit comments