Parcourir la source

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 il y a 5 ans
Parent
commit
3056956bd0
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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 }}