-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (41 loc) · 1.26 KB
/
baseline-csharp.yml
File metadata and controls
45 lines (41 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Generate baseline — C#
on:
workflow_dispatch:
inputs:
project:
description: "Project from config/csharp.toml to generate a baseline for"
required: true
type: choice
options:
- roslyn
srcml_version:
description: "Override srcml release version (default: read from config)"
required: false
default: ""
project_tag:
description: "Override project tag (default: read from config)"
required: false
default: ""
dry_run:
description: "Build the archive but skip publishing a release / opening a PR"
required: false
default: "false"
permissions:
contents: write
pull-requests: write
concurrency:
group: baseline-csharp-${{ inputs.project }}-${{ inputs.srcml_version }}-${{ inputs.project_tag }}
cancel-in-progress: false
jobs:
generate:
runs-on: ubuntu-24.04-arm
timeout-minutes: 300
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/generate-baseline
with:
language: csharp
project: ${{ inputs.project }}
srcml_version_override: ${{ inputs.srcml_version }}
project_tag_override: ${{ inputs.project_tag }}
dry_run: ${{ inputs.dry_run }}