From 62a1d2d370a68544c84d92e97b4ec79432e36a42 Mon Sep 17 00:00:00 2001 From: Oerd Cukalla Date: Tue, 22 Aug 2023 00:20:26 +0200 Subject: [PATCH 1/2] Fix(docs): Correct action input name Change input name used for passing the personal access token to `external-repo-token`. --- CONTRIBUTING.md | 2 +- docs/examples.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e2fde6a..def03bd 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -79,7 +79,7 @@ Here are a few things you can do that will increase the likelihood of your pull - Write tests. - Keep your change as focused as possible. If there are multiple changes you would like to make that are not dependent upon each other, consider submitting them as separate pull requests. -- Write a [good commit message](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html). +- Write a [good commit message](https://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html). ## Cutting a new release diff --git a/docs/examples.md b/docs/examples.md index 9dd0329..fb4dcf8 100644 --- a/docs/examples.md +++ b/docs/examples.md @@ -135,7 +135,7 @@ jobs: uses: actions/dependency-review-action@v3 with: config-file: 'github/octorepo-private/dependency-review-config.yml@main' - config-file-token: ${{ secrets.GITHUB_TOKEN }} # or a personal access token + external-repo-token: ${{ secrets.GITHUB_TOKEN }} # or a personal access token ``` ## Getting the results of the action in the PR as a comment From 366fffb71713a51f4c81271d269c5927b6d5405e Mon Sep 17 00:00:00 2001 From: Oerd Cukalla Date: Tue, 22 Aug 2023 00:28:34 +0200 Subject: [PATCH 2/2] Fix(docs): Correct article use. --- docs/examples.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/examples.md b/docs/examples.md index fb4dcf8..d9c352d 100644 --- a/docs/examples.md +++ b/docs/examples.md @@ -83,7 +83,7 @@ jobs: config-file: './.github/dependency-review-config.yml' ``` -## Using a configuration file from a external repository +## Using a configuration file from an external repository The following example will use a configuration file from an external public GitHub repository to configure the action. @@ -110,7 +110,7 @@ jobs: config-file: 'github/octorepo/dependency-review-config.yml@main' ``` -## Using a configuration file from a external repository with a personal access token +## Using a configuration file from an external repository with a personal access token The following example will use a configuration file from an external private GtiHub repository to configure the action.