Skip to content

Commit b399377

Browse files
committed
Update StackTable
1 parent dc72fdd commit b399377

2 files changed

Lines changed: 45 additions & 39 deletions

File tree

.vitepress/vars.js

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
// noinspection JSUnusedGlobalSymbols
2+
/**
3+
* Repo List - used for StackTable.vue in features.md
4+
*
5+
* Sort Order - 1: Stars - 2: Forks - 3: Last Updated Date
6+
* @type {string[]} Repo
7+
*/
8+
export const repos = [
9+
'cssnr/portainer-stack-deploy-action',
10+
'carlrygart/portainer-stack-deploy',
11+
'kgierke/portainer-stack-deployment',
12+
'LGinC/portainer-stack-deploy',
13+
'newarifrh/portainer-service-webhook',
14+
'BramKelchtermans/portainer-deploy-action',
15+
'nvti/portainer-stack-deploy',
16+
'wirgen/portainer-stack-redeploy-action',
17+
'bots-house/portainer-deploy-stack-action',
18+
'rrennoir/portainer-stack',
19+
'luminos-company/portami',
20+
'Hugollemos/deploy',
21+
'sdjnmxd/portainer-stack-deploy',
22+
'AlexPshkov/portainer-stack-deploy',
23+
'Filaind/portainer-stack-deploy',
24+
'spawnlab-dev/stack-deploy-action',
25+
'nevcodia/portainer-stack-deployment',
26+
'scod-br/portainer-stack-deploy',
27+
'dann41/portainer-stack-deploy',
28+
'ManicMade/portainer-git-stack-redeploy-action',
29+
'fe5dds9/portainer-deploy-action',
30+
'robin-moser/portainer-stack-deploy',
31+
'SimonPrinz/portainer-deploy-action',
32+
'KevinLamSeck/gh-action-portainer-stack-deploy',
33+
'inova-notas/portainer-stack-deploy',
34+
'Morgul/portainer-stack-deploy',
35+
'mantichor/portainer-action',
36+
]

docs/guides/features.md

Lines changed: 9 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -72,42 +72,12 @@ and all [feature requests](https://github.com/cssnr/portainer-stack-deploy-actio
7272
None of these actions have been tested. This is an exhaustive list of published actions.
7373
:::
7474

75-
<!-- Sort Order - 1: Stars - 2: Forks - 3: Updated -->
76-
77-
<StackTable
78-
:repos="[
79-
'cssnr/portainer-stack-deploy-action',
80-
'carlrygart/portainer-stack-deploy',
81-
'kgierke/portainer-stack-deployment',
82-
'LGinC/portainer-stack-deploy',
83-
'newarifrh/portainer-service-webhook',
84-
'BramKelchtermans/portainer-deploy-action',
85-
'nvti/portainer-stack-deploy',
86-
'wirgen/portainer-stack-redeploy-action',
87-
'bots-house/portainer-deploy-stack-action',
88-
'rrennoir/portainer-stack',
89-
'luminos-company/portami',
90-
'Hugollemos/deploy',
91-
'sdjnmxd/portainer-stack-deploy',
92-
'AlexPshkov/portainer-stack-deploy',
93-
'Filaind/portainer-stack-deploy',
94-
'spawnlab-dev/stack-deploy-action',
95-
'nevcodia/portainer-stack-deployment',
96-
'scod-br/portainer-stack-deploy',
97-
'dann41/portainer-stack-deploy',
98-
'ManicMade/portainer-git-stack-redeploy-action',
99-
'fe5dds9/portainer-deploy-action',
100-
'robin-moser/portainer-stack-deploy',
101-
'SimonPrinz/portainer-deploy-action',
102-
'KevinLamSeck/gh-action-portainer-stack-deploy',
103-
'inova-notas/portainer-stack-deploy',
104-
'Morgul/portainer-stack-deploy',
105-
'mantichor/portainer-action',
106-
]"
107-
</StackTable>
108-
109-
> **Updated** - Link to Pulse (activity)
110-
> **Language** - Link to Dependants (users)
111-
112-
If there are any missing [features](../guides/features.md) you need,
113-
please submit a [feature request](https://github.com/cssnr/portainer-stack-deploy-action/discussions/categories/feature-requests) and we will get them added...
75+
<script setup>
76+
// noinspection ES6UnusedImports
77+
import { repos } from '../../.vitepress/vars.js'
78+
</script>
79+
<StackTable :repos="repos" />
80+
81+
::: info Request a Feature
82+
To request a feature, please [open a feature request](https://github.com/cssnr/portainer-stack-deploy-action/discussions/categories/feature-requests)
83+
:::

0 commit comments

Comments
 (0)