Skip to content
This repository was archived by the owner on Jan 19, 2025. It is now read-only.

Commit 212a09f

Browse files
authored
ci: add back required workflow to repo (#1279)
### Summary of Changes Organization-wide required workflows are currently too strict (see [this discussion](community/community#43890)). I've disabled them for now and instead added them back directly to the repo.
1 parent c9a523a commit 212a09f

File tree

3 files changed

+39
-0
lines changed

3 files changed

+39
-0
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Dependency Review
2+
3+
on:
4+
pull_request:
5+
branches: [main]
6+
merge_group:
7+
8+
jobs:
9+
dependency-review:
10+
if: ${{ github.event_name == 'pull_request' }}
11+
uses: lars-reimann/.github/.github/workflows/dependency-review-reusable.yml@main

.github/workflows/megalinter.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: MegaLinter
2+
3+
on:
4+
pull_request:
5+
branches: [main]
6+
merge_group:
7+
8+
jobs:
9+
megalinter:
10+
if: ${{ github.event_name == 'pull_request' }}
11+
uses: lars-reimann/.github/.github/workflows/megalinter-reusable.yml@main
12+
secrets:
13+
PAT: ${{ secrets.PAT }}

.github/workflows/pr-format.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Pull Request Format
2+
3+
on:
4+
pull_request_target:
5+
types:
6+
- opened
7+
- edited
8+
- synchronize
9+
- reopened
10+
merge_group:
11+
12+
jobs:
13+
check-format:
14+
if: ${{ github.event_name == 'pull_request' }}
15+
uses: lars-reimann/.github/.github/workflows/pr-format-reusable.yml@main

0 commit comments

Comments
 (0)