diff options
author | 2023-07-17 14:53:51 -0500 | |
---|---|---|
committer | 2023-07-17 14:53:51 -0500 | |
commit | 6ad4672ef17a6ee1f5cdd02839e285fc22e72e91 (patch) | |
tree | 9d3ac89a774ac45f817b3b9645173d8d3890879c | |
parent | 474ea808e7d982b93aa705d3d7cb0f7251518915 (diff) | |
download | astro-6ad4672ef17a6ee1f5cdd02839e285fc22e72e91.tar.gz astro-6ad4672ef17a6ee1f5cdd02839e285fc22e72e91.tar.zst astro-6ad4672ef17a6ee1f5cdd02839e285fc22e72e91.zip |
fix(ci): fix action needs-repro action (#7690)
-rw-r--r-- | .github/workflows/issue-labeled.yml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.github/workflows/issue-labeled.yml b/.github/workflows/issue-labeled.yml index 441f97723..8723639c7 100644 --- a/.github/workflows/issue-labeled.yml +++ b/.github/workflows/issue-labeled.yml @@ -19,8 +19,7 @@ jobs: labels: "needs triage" - name: needs repro - if: | - ${{ github.event.label.name == 'needs repro' }} + if: github.event.label.name == 'needs repro' uses: actions-cool/issues-helper@v3 with: actions: "create-comment, remove-labels" |