-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (49 loc) · 1.44 KB
/
releasability_checks.yml
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
46
47
48
49
50
51
name: Execute releasability checks
on:
workflow_dispatch:
inputs:
organization:
description: "GitHub organization"
required: true
default: "SonarSource"
type: choice
options:
- SonarSource
repository:
description: "GitHub repository"
required: true
branch:
description: "Branch"
default: "master"
required: true
version:
description: "The version to check"
required: true
commit-sha:
description: "Commit SHA"
required: true
releasabily-env:
description: "For development purposes, the environment to use. Defaults to production."
required: false
default: prod
type: choice
options:
- prod
- staging
- dev
jobs:
trigger_releasability_checks:
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Trigger releasability checks
uses: ./
with:
organization: ${{ github.event.inputs.organization }}
repository: ${{ github.event.inputs.repository }}
branch: ${{ github.event.inputs.branch }}
version: ${{ github.event.inputs.version }}
commit-sha: ${{ github.event.inputs.commit-sha }}
releasabily-env: ${{ github.event.inputs.releasabily-env }}