Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
teto committed Nov 12, 2024
1 parent f342186 commit 4c508f9
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
prepare-new-plugins:
runs-on: ubuntu-latest
outputs:
repository: ${{ steps.json.outputs.repository }}
plugins: ${{ steps.json.outputs.repository }}
# plugins:
# [
# {
Expand All @@ -22,8 +22,18 @@ jobs:
- name: build matrix
id: json
run: |
repository='{ "repository": ["repo1","repo3","repo3","repo4"] }'
echo "repository=$repository" >> "$GITHUB_OUTPUT"
plugins=<<<EOF
[
{
"name": "startup-nvim/startup.nvim",
"shorthand": "startup.nvim",
"license": "GPL-2.0",
"summary": "A highly configurable neovim startup screen",
"dependencies": ["telescope.nvim", "plenary.nvim"]
}
]
EOF
echo "plugins=$plugins" >> "$GITHUB_OUTPUT"
test-pr:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 4c508f9

Please sign in to comment.