Skip to content

Commit 64f306b

Browse files
committed
try without path
1 parent c330e59 commit 64f306b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/issue-bot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ jobs:
166166
exit_code="$?"
167167
168168
if [[ "$exit_code" == "2" ]]; then
169-
echo "::notice file=.github/workflows/issue-bot.yml,line=1 ::Issue bot detected open issues which are affected by this pull request - see https://github.com/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID"
169+
echo "::notice ::Issue bot detected open issues which are affected by this pull request - see https://github.com/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID"
170170
exit 0
171171
fi
172172

issue-bot/src/Console/EvaluateCommand.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@
3333
class EvaluateCommand extends Command
3434
{
3535

36-
const EXIT_ERROR = 1;
37-
const EXIT_AFFECTS_ISSUES = 2;
38-
const EXIT_NO_AFFECTED_ISSUES = 0;
36+
private const EXIT_ERROR = 1;
37+
private const EXIT_AFFECTS_ISSUES = 2;
38+
private const EXIT_NO_AFFECTED_ISSUES = 0;
3939

4040
public function __construct(
4141
private TabCreator $tabCreator,

0 commit comments

Comments
 (0)