Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/create-plugin-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 ?? '';
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -157,15 +157,15 @@ 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
Comment thread
homotechsual marked this conversation as resolved.
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
github.rest.issues.removeLabel({
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
Expand Down
2 changes: 1 addition & 1 deletion contributing/plugins.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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` |
Expand Down