diff --git a/docs/concepts-guidelines.md b/docs/concepts-guidelines.md index fa2b0f5..dc12601 100644 --- a/docs/concepts-guidelines.md +++ b/docs/concepts-guidelines.md @@ -92,7 +92,7 @@ Workflows triggered by `pull_request` events will by default check out a [merge ### Restrictions on repository forks GitHub Actions have imposed restrictions on workflow runs triggered by public repository forks. -Private repository forks can be configured to [enable workflows](https://docs.github.com/en/github/administering-a-repository/disabling-or-limiting-github-actions-for-a-repository#enabling-workflows-for-private-repository-forks) to run without restriction. +Private repositories can be configured to [enable workflows](https://docs.github.com/en/github/administering-a-repository/disabling-or-limiting-github-actions-for-a-repository#enabling-workflows-for-private-repository-forks) from forks to run without restriction. The restrictions apply to the `pull_request` event triggered by a fork opening a pull request in the upstream repository. diff --git a/docs/examples.md b/docs/examples.md index ca4be28..b47dcd1 100644 --- a/docs/examples.md +++ b/docs/examples.md @@ -327,7 +327,7 @@ An `on: repository_dispatch` workflow can be triggered from another workflow wit This is a pattern that lends itself to automated code linting and fixing. A pull request can be created to fix or modify something during an `on: pull_request` workflow. The pull request containing the fix will be raised with the original pull request as the base. This can be then be merged to update the original pull request and pass any required tests. Note that due to [token restrictions on public repository forks](https://docs.github.com/en/actions/configuring-and-managing-workflows/authenticating-with-the-github_token#permissions-for-the-github_token), workflows for this use case do not work for pull requests raised from forks. -Private repository forks can be configured to [enable workflows](https://docs.github.com/en/github/administering-a-repository/disabling-or-limiting-github-actions-for-a-repository#enabling-workflows-for-private-repository-forks) to run without restriction. +Private repositories can be configured to [enable workflows](https://docs.github.com/en/github/administering-a-repository/disabling-or-limiting-github-actions-for-a-repository#enabling-workflows-for-private-repository-forks) from forks to run without restriction. ### autopep8