-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat (action) add management actions
- Loading branch information
1 parent
c3acafb
commit 8b2d4d4
Showing
4 changed files
with
64 additions
and
0 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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 @@ | ||
* @himanshurajora @spark117code |
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,6 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: github-actions | ||
directory: / | ||
schedule: | ||
interval: daily |
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,35 @@ | ||
Examples: | ||
- any: ['examples/**'] | ||
|
||
Library: | ||
- all: ['lib/**'] | ||
|
||
ReadMe: | ||
- all: ['readme.md'] | ||
|
||
CodeEditor: | ||
- all: ['.vscode/**'] | ||
|
||
Tests: | ||
- any: ['test/**', '**/*.test.ts', '**/*.test.js, *.spec.ts'] | ||
|
||
Core: | ||
- all: ['src/**'] | ||
|
||
CoreWithTests: | ||
- all: ['lib/core/**', 'test/**'] | ||
|
||
Actions: | ||
- all: ['.github/**'] | ||
|
||
Docs: | ||
- all: ['Docs/**'] | ||
|
||
Types: | ||
- all: ['lib/types/**'] | ||
|
||
Packages: | ||
- all: ['**/**/package*.json'] | ||
|
||
Codeowners: | ||
- all: ['.github/CODEOWNERS'] |
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,22 @@ | ||
# This workflow will triage pull requests and apply a label based on the | ||
# paths that are modified in the pull request. | ||
# | ||
# To use this workflow, you will need to set up a .github/labeler.yml | ||
# file with configuration. For more information, see: | ||
# https://github.com/actions/labeler | ||
|
||
name: Labeler | ||
on: [pull_request_target] | ||
|
||
jobs: | ||
label: | ||
|
||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
pull-requests: write | ||
|
||
steps: | ||
- uses: actions/labeler@v5 | ||
with: | ||
repo-token: "${{ secrets.GITHUB_TOKEN }}" |