Skip to content

Commit a2d5182

Browse files
author
Andre Kuhlenschmidt
committed
hello world
1 parent dc756c0 commit a2d5182

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/inc-version.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: inc-version
2+
on:
3+
workflow_dispatch:
4+
inputs:
5+
commit-sha-to-release:
6+
description: The full commit SHA in semgrep-pro that you'd like to release. It must match the output of the push-pr-binaries job after it runs successfully on the 'develop' branch. It is used to name the release candidate binaries uploaded to S3.
7+
required: true
8+
type: string
9+
dry-run:
10+
default: false
11+
description: Whether a dry-run (e.g., print tags to push) should be peformed. Actually push images if false.
12+
required: true
13+
type: boolean
14+
semgrep-version:
15+
description: The version of Semgrep OSS that this Pro release is built for. This is the version that is about to be released and should be what the previous version bump step set the OSS version to in the previous step. This is only really required as a safety check, failing to get the version correct here will only cause this step to fail and should not break anything.
16+
required: true
17+
type: string
18+
jobs:
19+
test-hooks:
20+
runs-on: ubuntu-latest
21+
steps:
22+
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)