Skip to content

Commit 4ece741

Browse files
Copilotneilime
andcommitted
feat: Add dynamic repository scanning and GitHub Actions workflow
Co-authored-by: neilime <314088+neilime@users.noreply.github.com> Signed-off-by: Emilien Escalle <emilien.escalle@escemi.com>
1 parent d1d5742 commit 4ece741

63 files changed

Lines changed: 2432 additions & 81 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.devcontainer/devcontainer.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"name": "Node.js & TypeScript",
3+
"image": "mcr.microsoft.com/devcontainers/typescript-node:1-22-bookworm",
4+
"features": {
5+
"ghcr.io/astronomer/devcontainer-features/astro-cli:1": {}
6+
}
7+
}
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---
2+
name: Bug report
3+
about: Create a bug report
4+
title: ""
5+
labels: bug, needs triage
6+
assignees: ""
7+
---
8+
9+
<!--- Please direct any generic questions related to actions to our support community forum at https://github.community/c/code-to-cloud/github-actions/41 --->
10+
<!--- Before opening up a new bug report, please make sure to check for similar existing issues -->
11+
12+
**Description:** A clear and concise description of what the bug is.
13+
14+
**Action version:** Specify the action version
15+
16+
**Platform:**
17+
18+
- [ ] Ubuntu
19+
- [ ] macOS
20+
- [ ] Windows
21+
22+
**Runner type:**
23+
24+
- [ ] Hosted
25+
- [ ] Self-hosted
26+
27+
**Tools version:**
28+
29+
<!--- Please specify versions of node and package manager (npm, yarn, pnpm and etc)-->
30+
31+
**Repro steps:**
32+
A description with steps to reproduce the issue. If you have a public example or
33+
repository to share, please provide the link.
34+
35+
**Expected behavior:** A description of what you expected to happen.
36+
37+
**Actual behavior:** A description of what is actually happening.
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ""
5+
labels: ""
6+
assignees: ""
7+
---
8+
9+
**Is your feature request related to a problem? Please describe.** A clear and
10+
concise description of what the problem is. Ex. I'm always frustrated when [...]
11+
12+
**Describe the solution you'd like** A clear and concise description of what you
13+
want to happen.
14+
15+
**Describe alternatives you've considered** A clear and concise description of
16+
any alternative solutions or features you've considered.
17+
18+
**Additional context** Add any other context or screenshots about the feature
19+
request here.

.github/dependabot.yml

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
version: 2
2+
3+
updates:
4+
- package-ecosystem: "npm"
5+
open-pull-requests-limit: 20
6+
directory: "/"
7+
versioning-strategy: increase
8+
schedule:
9+
interval: "weekly"
10+
groups:
11+
npm-docusaurus-dependencies:
12+
patterns:
13+
- "@docusaurus/*"
14+
- "react"
15+
- "react-*"
16+
- "@mdx-js/react"
17+
- "clsx"
18+
- "prism-react-renderer"
19+
npm-development-dependencies:
20+
dependency-type: "development"
21+
22+
- package-ecosystem: github-actions
23+
open-pull-requests-limit: 20
24+
directory: "/"
25+
schedule:
26+
interval: weekly
27+
groups:
28+
github-actions-dependencies:
29+
patterns:
30+
- "*"
31+
32+
- package-ecosystem: "devcontainers"
33+
open-pull-requests-limit: 20
34+
directory: "/"
35+
schedule:
36+
interval: weekly
37+
groups:
38+
devcontainers-dependencies:
39+
patterns:
40+
- "*"
41+
42+
- package-ecosystem: "docker"
43+
open-pull-requests-limit: 20
44+
directory: "/"
45+
schedule:
46+
interval: "weekly"
47+
groups:
48+
docker-dependencies:
49+
patterns:
50+
- "*"

.github/linters/.jscpd.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"threshold": 5,
3+
"ignore": [".astro/**"]
4+
}

0 commit comments

Comments
 (0)