Skip to content

Commit 468e674

Browse files
🔄 Sync workflows from kubestellar/.github (#17)
Co-authored-by: GitHub Actions <noreply@github.com>
1 parent 38f8853 commit 468e674

File tree

8 files changed

+112
-0
lines changed

8 files changed

+112
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Add Help Wanted Label
2+
3+
on:
4+
issues:
5+
types: [labeled]
6+
7+
permissions:
8+
issues: write
9+
10+
jobs:
11+
label:
12+
uses: kubestellar/infra/.github/workflows/reusable-add-help-wanted.yml@main
13+
secrets: inherit
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Assignment Helper
2+
3+
on:
4+
issue_comment:
5+
types: [created]
6+
7+
permissions:
8+
issues: write
9+
10+
jobs:
11+
assignment-helper:
12+
uses: kubestellar/infra/.github/workflows/reusable-assignment-helper.yml@main

.github/workflows/feedback.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Feedback Wanted
2+
3+
on:
4+
pull_request:
5+
types: [closed]
6+
7+
permissions:
8+
contents: read
9+
pull-requests: write
10+
11+
jobs:
12+
feedback:
13+
uses: kubestellar/infra/.github/workflows/reusable-feedback.yml@main
14+
secrets: inherit

.github/workflows/greetings.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Greetings
2+
3+
on:
4+
pull_request_target:
5+
types: [opened, reopened]
6+
issues:
7+
types: [opened, reopened]
8+
9+
permissions:
10+
contents: read
11+
issues: write
12+
pull-requests: write
13+
14+
jobs:
15+
greet:
16+
uses: kubestellar/infra/.github/workflows/reusable-greetings.yml@main
17+
secrets: inherit

.github/workflows/label-helper.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Label Helper
2+
3+
on:
4+
issue_comment:
5+
types: [created]
6+
7+
permissions:
8+
contents: read
9+
issues: write
10+
pull-requests: write
11+
12+
jobs:
13+
label-helper:
14+
uses: kubestellar/infra/.github/workflows/reusable-label-helper.yml@main
15+
secrets: inherit

.github/workflows/pr-verifier.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: PR Verifier
2+
3+
on:
4+
pull_request_target:
5+
types: [opened, edited, synchronize, reopened]
6+
7+
permissions:
8+
checks: write
9+
pull-requests: read
10+
11+
jobs:
12+
verify:
13+
uses: kubestellar/infra/.github/workflows/reusable-pr-verifier.yml@main
14+
secrets: inherit
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: "PR Title Verifier"
2+
3+
on:
4+
pull_request:
5+
types: [opened, edited, synchronize, reopened]
6+
7+
permissions:
8+
contents: read
9+
10+
jobs:
11+
verify:
12+
uses: kubestellar/infra/.github/workflows/reusable-pr-verify-title.yml@main
13+
secrets: inherit

.github/workflows/scorecard.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: OpenSSF Scorecard
2+
3+
on:
4+
branch_protection_rule:
5+
schedule:
6+
- cron: '0 6 * * 1'
7+
push:
8+
branches: [ "main" ]
9+
workflow_dispatch:
10+
11+
jobs:
12+
analysis:
13+
uses: kubestellar/infra/.github/workflows/reusable-scorecard.yml@main
14+
secrets: inherit

0 commit comments

Comments
 (0)