Jelajahi Sumber

Fix string quoting

Fix [string quoting](https://help.github.com/en/actions/reference/context-and-expression-syntax-for-github-actions) in github action introduced in #8119

> You must use single quotes. Escape literal single-quotes with a single quote.
Saul Shanabrook 5 tahun lalu
induk
melakukan
3056956bd0
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  1. 1 1
      .github/workflows/labeler.yml

+ 1 - 1
.github/workflows/labeler.yml

@@ -8,7 +8,7 @@ jobs:
     name: Update PR Labels
     runs-on: ubuntu-latest
     steps:
-      - if: github.repository == "jupyterlab/jupyterlab"
+      - if: github.repository == 'jupyterlab/jupyterlab'
         uses: paulfantom/periodic-labeler@dffbc90404f371f76444a69221c2f7ad079e2319
         env:
           GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}