File tree Expand file tree Collapse file tree 6 files changed +51
-22
lines changed Expand file tree Collapse file tree 6 files changed +51
-22
lines changed Original file line number Diff line number Diff line change @@ -19,14 +19,11 @@ jobs:
19
19
- name : setup python
20
20
uses : actions/setup-python@v2
21
21
with :
22
- python-version : ' 3.8'
23
-
24
- - name : upgrade pip
25
- run : python3 -m pip install --upgrade pip
22
+ python-version : ' 3.10'
26
23
27
24
- name : install bikeshed
28
25
run : |
29
- python3 -m pip install --upgrade bikeshed
26
+ pipx install bikeshed
30
27
bikeshed update
31
28
32
29
- name : run bikeshed
Original file line number Diff line number Diff line change
1
+ # Workflow for verifying bikeshed documents processing
2
+
3
+ name : Verify processing
4
+ on :
5
+ # only concerned with gating PRs to the main branch
6
+ pull_request :
7
+ branches : [ main ]
8
+
9
+ # A workflow run is made up of one or more jobs that can run sequentially or in parallel
10
+ jobs :
11
+ deploy :
12
+ runs-on : ubuntu-latest
13
+ steps :
14
+ - name : checkout
15
+
16
+
17
+ - name : setup python
18
+ uses : actions/setup-python@v2
19
+ with :
20
+ python-version : ' 3.10'
21
+
22
+ - name : install bikeshed
23
+ run : |
24
+ pipx install bikeshed
25
+ bikeshed update
26
+
27
+ - name : run bikeshed
28
+ run : |
29
+ bikeshed spec proposals/specification/index.bs
30
+ bikeshed spec proposals/primer/application.bs
31
+ bikeshed spec proposals/primer/authorization-agent.bs
32
+
33
+ - name : generate svg
34
+ run : for diagram in proposals/*/diagrams/*.seq.mmd; do docker run --rm -v "$PWD:/data" minlag/mermaid-cli -i /data/$diagram; done
35
+
36
+ - name : generate png
37
+ run : for diagram in proposals/*/diagrams/*.flow.mmd; do docker run --rm -v "$PWD:/data" minlag/mermaid-cli -i /data/$diagram -o /data/$diagram.png; done
Original file line number Diff line number Diff line change 1
1
<pre class='metadata'>
2
2
Title : Solid Application Interoperability - Application Primer
3
- Shortname : solid-interop -application-primer
3
+ Shortname : sai -application-primer
4
4
Level : 1
5
- Status : w3c/UD
6
- Group : solid-cg
5
+ Status : CG-DRAFT
6
+ Group : solidcg
7
7
URL : https://solid.github.io/data-interoperability-panel/primer/applications.html
8
8
Repository : https://github.com/solid/data-interoperability-panel
9
9
Inline Github Issues : title
10
10
Boilerplate : issues-index no
11
- Local Boilerplate : logo yes
12
11
Markup Shorthands : markdown yes
13
12
Editor : elf Pavlik
13
+ !Version : 0.1
14
14
Abstract : Primer for libraries intended to be used by applications.
15
15
Boilerplate : omit conformance, omit abstract
16
16
</pre>
Original file line number Diff line number Diff line change 1
1
2
2
<pre class='metadata'>
3
3
Title : Solid Application Interoperability - Authorization Agent Primer
4
- Shortname : solid-interop -authorization-agent-primer
4
+ Shortname : sai -authorization-agent-primer
5
5
Level : 1
6
- Status : w3c/UD
7
- Group : solid-cg
6
+ Status : CG-DRAFT
7
+ Group : solidcg
8
8
URL : https://solid.github.io/data-interoperability-panel/primer/authorization-agent.html
9
9
Repository : https://github.com/solid/data-interoperability-panel
10
10
Inline Github Issues : title
11
11
Boilerplate : issues-index no
12
12
Local Boilerplate : logo yes
13
13
Markup Shorthands : markdown yes
14
14
Editor : elf Pavlik
15
+ !Version : 0.1
15
16
Abstract : Primer for libraries intended to be used by authorization agents.
16
17
Boilerplate : omit conformance, omit abstract
17
18
</pre>
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
<pre class="metadata">
2
2
Title : Solid Application Interoperability
3
- Shortname : interop
3
+ Shortname : sai
4
4
Level : 1
5
5
Max ToC Depth : 2
6
- Status : w3c/ CG-DRAFT
7
- Group : w3c
6
+ Status : CG-DRAFT
7
+ Group : solidcg
8
8
URL : https://solid.github.io/data-interoperability-panel/specification/
9
9
Repository : https://github.com/solid/data-interoperability-panel
10
10
Inline Github Issues : title
11
11
Editor : Justin Bingham
12
12
Editor : Eric Prud'hommeaux
13
13
Editor : elf Pavlik
14
+ !Version : 0.1
14
15
Markup Shorthands : markdown yes
15
16
Boilerplate : conformance no
16
17
Dark Mode : off
@@ -151,10 +152,6 @@ em.rfc2119 {
151
152
152
153
</style>
153
154
154
- <div boilerplate="copyright">
155
- MIT License Copyright 2019 - 2021 W3C Solid Community Group
156
- </div>
157
-
158
155
<pre class=include> path: introduction.bs</pre>
159
156
<pre class=include> path: agent.bs</pre>
160
157
<pre class=include> path: social-agent.bs</pre>
You can’t perform that action at this time.
0 commit comments