Skip to content

Commit 74fa73e

Browse files
committed
fix .env example
1 parent 5597382 commit 74fa73e

File tree

8 files changed

+28
-25
lines changed

8 files changed

+28
-25
lines changed

.deployment-trigger

Lines changed: 0 additions & 1 deletion
This file was deleted.

.env.example

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
GITHUB_APP_ID=
2+
GITHUB_APP_PRIVATE_KEY=
3+
GITHUB_INSTALLATION_ID=

.env.sample

Lines changed: 0 additions & 1 deletion
This file was deleted.

.eslintrc.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "next/core-web-vitals"
3+
}

.github/stale.yml

Lines changed: 0 additions & 20 deletions
This file was deleted.

.github/workflows/preview.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ env:
55
on:
66
push:
77
branches-ignore:
8-
- master
8+
- main
99
- production
1010
jobs:
1111
Deploy-Preview:
@@ -36,7 +36,7 @@ jobs:
3636
3737
Add-Comment:
3838
runs-on:
39-
labels: ubuntu-latest
39+
labels: ubuntu-22.04-2cpu-8ram-75ssd
4040
needs: Deploy-Preview
4141
permissions:
4242
issues: write

.github/workflows/production.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ env:
55
on:
66
push:
77
branches:
8-
- master
8+
- main
99
- production
1010
jobs:
1111
Deploy-Production:

.github/workflows/semgrep.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Semgrep
2+
3+
on:
4+
pull_request_target: {}
5+
push:
6+
branches: ["master", "main"]
7+
jobs:
8+
semgrep:
9+
name: Scan
10+
runs-on:
11+
labels: ubuntu-22.04-2cpu-8ram-75ssd
12+
container:
13+
image: returntocorp/semgrep
14+
if: (github.actor != 'dependabot[bot]' && github.actor != 'snyk-bot')
15+
steps:
16+
- uses: actions/checkout@v3
17+
- run: semgrep ci
18+
env:
19+
SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}

0 commit comments

Comments
 (0)