Skip to content

Commit 60c90b1

Browse files
authored
GitHub Security Lab (GHSL) Vulnerability Report: GHSL-2020-231 (#110)
1 parent 16e7086 commit 60c90b1

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/wipcheck.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ jobs:
1414

1515
steps:
1616
- name: Fail build if pull request title contains [WIP]
17+
env:
18+
TITLE: ${{ github.event.pull_request.title }}
1719
if: ${{ contains(github.event.pull_request.title, '[WIP]') }} # This function is case insensitive.
1820
run: |
19-
echo Warning! PR title "${{ github.event.pull_request.title }}" contains [WIP]. Remove [WIP] from the title when PR is ready.
21+
echo Warning! PR title "$TITLE" contains [WIP]. Remove [WIP] from the title when PR is ready.
2022
exit 1

src/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22

33
<PropertyGroup>
4-
<VersionPrefix>3.1.0-preview</VersionPrefix>
4+
<VersionPrefix>3.1.1-preview</VersionPrefix>
55
<LangVersion>latest</LangVersion>
66
<Authors>Joe McBride</Authors>
77
<PackageLicenseExpression>MIT</PackageLicenseExpression>

0 commit comments

Comments
 (0)