We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21cc0c2 commit 5fe6d0aCopy full SHA for 5fe6d0a
.github/workflows/ci.yml
@@ -1,12 +1,7 @@
1
---
2
-# lint all markdown files
3
-
4
name: "CI"
5
6
on:
7
- push:
8
- branches:
9
- - master
10
pull_request:
11
branches:
12
- master
.github/workflows/publish-wiki.yml
@@ -0,0 +1,29 @@
+---
+name: "Publish wiki"
+
+on:
+ push:
+ branches:
+ - master
+ paths:
+ - commands/**
+ - .github/workflows/publish-wiki.yml
+concurrency:
13
+ group: "${{ github.workflow }}-${{ github.ref }}"
14
+ cancel-in-progress: true
15
16
+permissions:
17
+ contents: write
18
19
+jobs:
20
+ validate:
21
+ runs-on: ubuntu-latest
22
+ steps:
23
+ - name: Checkout
24
+ uses: actions/checkout@v4
25
26
+ - name: Publish wiki
27
+ uses: Andrew-Chen-Wang/github-wiki-action@v4
28
+ with:
29
+ path: commands/
0 commit comments