Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Hazumi Ichijo committed Sep 9, 2021
1 parent a5cfc5c commit d41fe37
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ jobs:
create-issue:
runs-on: ubuntu-latest
steps:
- uses: rerost/[email protected].13
- uses: rerost/[email protected].14
with:
template-issue: 1
2 changes: 1 addition & 1 deletion .github/workflows/manual_discussion.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
create-issue:
runs-on: ubuntu-latest
steps:
- uses: rerost/[email protected].13
- uses: rerost/[email protected].14
with:
template-issue: 48
discussion: true
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,5 @@ RUN go mod download

COPY . .
RUN go install

ENTRYPOINT ["./action.sh"]
4 changes: 2 additions & 2 deletions action.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh -l
#!/bin/bash

repository=$1
template_issue=$2
Expand All @@ -9,7 +9,7 @@ is_discussion=$6

type="issues"

if [ ${is_discussion} = "true" ]; then
if [ "${is_discussion}" = "true" ]; then
type="discussions"
fi

Expand Down

0 comments on commit d41fe37

Please sign in to comment.