From 7e5909f9ae9e147a2fbeefc2613a5484ff51d846 Mon Sep 17 00:00:00 2001 From: Gregor Martynus <39992+gr2m@users.noreply.github.com> Date: Mon, 21 Aug 2023 14:43:09 -0700 Subject: [PATCH 1/2] fix(README): fix name in usage examples --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9f467e2..a9f3f2b 100644 --- a/README.md +++ b/README.md @@ -19,8 +19,8 @@ jobs: hello-world: runs-on: ubuntu-latest steps: - - uses: actions/github-app-token@v1 - id: app-token + - uses: actions/create-github-app-token@v1 + id: app-token`` with: app_id: ${{ vars.APP_ID }} private_key: ${{ secrets.PRIVATE_KEY }} @@ -40,7 +40,7 @@ jobs: auto-format: runs-on: ubuntu-latest steps: - - uses: actions/github-app-token@v1 + - uses: actions/create-github-app-token@v1 id: app-token with: # required From 54154b9222d3b5774445d354f28ee31fda669a24 Mon Sep 17 00:00:00 2001 From: Gregor Martynus <39992+gr2m@users.noreply.github.com> Date: Mon, 21 Aug 2023 14:45:26 -0700 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a9f3f2b..0b4ec23 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/create-github-app-token@v1 - id: app-token`` + id: app-token with: app_id: ${{ vars.APP_ID }} private_key: ${{ secrets.PRIVATE_KEY }}