Skip to content

Commit

Permalink
fix: cond
Browse files Browse the repository at this point in the history
  • Loading branch information
Okabe-Junya committed Oct 2, 2023
1 parent 4ad4ce5 commit 160fa3e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/label-bot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
retries: 1
result-encoding: string
script: |
const labels = ["release: major", "release: minor", "release: patch", "release: none"];
const { data: issue_data } = await github.rest.issues.get({
Expand All @@ -31,7 +32,7 @@ jobs:
}
- name: add-label
if: steps.check-label.outputs.is_release_label == 'false'
if: "${{steps.check-label.outputs.is_release_label == 'false'}}"
uses: actions/github-script@v6
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 160fa3e

Please sign in to comment.