From 8b7862f69a7dc9391e1ff98cca1da3bf7b2af64b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arne=20J=C3=B8rgensen?= Date: Sat, 18 Apr 2020 21:49:55 +0200 Subject: [PATCH] Fixes to README To get the action to run I had to change the way to set the GitHub Token. But even if it runs and finds errors I can't seem to get it to report back the error to a pull request. So maybe something else is missing? --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 86d462b7..96d7b8f2 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Neat! Bet your CI doesn't do that. ## Usage -`.github/lint.yml`: +`.github/workflows/lint.yml`: ```yml name: Lint @@ -21,6 +21,6 @@ jobs: steps: - uses: actions/checkout@v1 - uses: hallee/eslint-action@master - with: - repo-token: ${{secrets.GITHUB_TOKEN}} + env: + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} ```