-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* remove unused dockerfile * update * Trigger CI * fix * fix lint * remove unused scripts * fix lint * fix lint * restructure * update readme
- Loading branch information
1 parent
a5d89a8
commit 43124fc
Showing
24 changed files
with
147 additions
and
491 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
# Inherit configuration of a package | ||
include: package:commitlint_cli/commitlint.yaml | ||
|
||
# Custom rules | ||
rules: | ||
type-case: | ||
- 2 | ||
- always | ||
- "lower-case" | ||
|
||
# Whether commitlint uses the default ignore rules. | ||
defaultIgnores: true |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
--- | ||
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | ||
name: Label Sync | ||
|
||
on: | ||
# Manual trigger | ||
workflow_dispatch: | ||
inputs: | ||
dry-run: | ||
description: "Dry Run" | ||
default: true | ||
required: false | ||
type: boolean | ||
|
||
# Dry run on pull requests | ||
pull_request: | ||
paths: | ||
- .github/workflows/label-sync.yaml | ||
- .github/labels.yaml | ||
|
||
# Run when the configs changed on the main branch | ||
push: | ||
branches: ["main"] | ||
paths: | ||
- .github/workflows/label-sync.yaml | ||
- .github/labels.yaml | ||
|
||
# Scheduled daily | ||
schedule: | ||
- cron: "0 0 * * *" | ||
|
||
jobs: | ||
label-sync: | ||
uses: mirceanton/reusable-workflows/.github/workflows/[email protected] | ||
secrets: inherit | ||
with: | ||
dry-run: ${{ inputs.dry-run || github.event_name == 'pull_request' }} | ||
config-file: .github/labels.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | ||
name: Labeler | ||
|
||
on: | ||
# When a pull request is opened, reopened, or synchronized | ||
pull_request_target: {} | ||
|
||
jobs: | ||
pr-labeler: | ||
uses: mirceanton/reusable-workflows/.github/workflows/[email protected] | ||
secrets: inherit | ||
with: | ||
config-file: .github/labeler.yaml |
Oops, something went wrong.