Initial commit

This commit is contained in:
Ismo Vuorinen
2024-08-27 21:01:13 +03:00
committed by GitHub
commit 65fc1cb2bb
12 changed files with 413 additions and 0 deletions

18
.github/workflows/pr-lint.yml vendored Normal file
View File

@@ -0,0 +1,18 @@
---
name: PR Lint
on:
push:
branches-ignore: [master, main]
# Remove the line above to run when pushing to master
pull_request:
branches: [master, main]
permissions:
contents: read
packages: read
statuses: write
jobs:
SuperLinter:
uses: ivuorinen/.github/.github/workflows/pr-lint.yml@main

14
.github/workflows/release-drafter.yml vendored Normal file
View File

@@ -0,0 +1,14 @@
---
name: Release Drafter
# yamllint disable-line rule:truthy
on:
workflow_call:
permissions:
contents: write
statuses: write
jobs:
Draft:
uses: ivuorinen/.github/.github/workflows/sync-labels.yml@main

18
.github/workflows/stale.yml vendored Normal file
View File

@@ -0,0 +1,18 @@
---
name: Stale
# yamllint disable-line rule:truthy
on:
schedule:
- cron: "0 8 * * *"
workflow_call:
workflow_dispatch:
permissions:
contents: write # only for delete-branch option
issues: write
pull-requests: write
jobs:
stale:
uses: ivuorinen/.github/.github/workflows/stale.yml@main

21
.github/workflows/sync-labels.yml vendored Normal file
View File

@@ -0,0 +1,21 @@
---
name: Sync labels
# yamllint disable-line rule:truthy
on:
push:
branches:
- main
paths:
- .github/labels.yml
schedule:
- cron: "34 5 * * *"
workflow_call:
workflow_dispatch:
permissions:
issues: write
jobs:
SyncLabels:
uses: ivuorinen/.github/.github/workflows/sync-labels.yml@main