diff --git a/.github/workflows/create-plugin-pr.yml b/.github/workflows/create-plugin-pr.yml index 6c4caba..8007da1 100644 --- a/.github/workflows/create-plugin-pr.yml +++ b/.github/workflows/create-plugin-pr.yml @@ -14,7 +14,7 @@ jobs: if: contains(github.event.issue.labels.*.name, 'plugin-submission') runs-on: ubuntu-latest steps: - - uses: actions/github-script@v8 + - uses: actions/github-script@v9 with: script: | const body = context.payload.issue.body ?? ''; diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 0d26af5..c03b5ee 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -64,7 +64,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ github.event.pull_request.head.sha || github.ref }} fetch-depth: 0 @@ -157,7 +157,7 @@ jobs: - name: Remove label if: ${{ github.event_name == 'pull_request_target' && contains(github.event.label.name, '🚀request-deploy') }} - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | @@ -165,7 +165,7 @@ jobs: issue_number: context.issue.number, owner: context.repo.owner, repo: context.repo.repo, - name: ['🚀request-deploy'] + name: '🚀request-deploy' }) # Comment on PR from the fork diff --git a/contributing/plugins.mdx b/contributing/plugins.mdx index d70399d..377eee9 100644 --- a/contributing/plugins.mdx +++ b/contributing/plugins.mdx @@ -43,7 +43,7 @@ npmPackages: | `description` | Yes | Short, one-sentence description | | `preview` | Yes | URL to a preview image, or `null` to auto-generate | | `website` | Yes | Public website or repository URL | -| `source` | No | Source code URL (required for acceptance) | +| `source` | No | Source code URL — required if the plugin is open source, `null` or omitted if closed source | | `author` | No | Your GitHub username or organisation name | | `tags` | No | See [available tags](#tags) below | | `minimumVersion` | No | Minimum Docusaurus version, e.g. `3.0.0`, or `null` |