diff --git a/workflows/labels.yml b/.github/workflows/labels.yml similarity index 100% rename from workflows/labels.yml rename to .github/workflows/labels.yml diff --git a/workflows/pr-size.yml b/.github/workflows/pr-size.yml similarity index 100% rename from workflows/pr-size.yml rename to .github/workflows/pr-size.yml diff --git a/README.md b/README.md index 78cf242..af26929 100644 --- a/README.md +++ b/README.md @@ -7,24 +7,28 @@ This repository acts as a fallback for all of my repositories that don't have an ## Development Pretty straight forward since this is just a fall back `.github` folder. -No sophistacted tech needed, just add or modify anything... as your liking and suits your personal repositories. +No sophisticated tech needed, just add or modify anything... as your liking and suits your personal repositories. ## Current contents ``` .github -| +-ISSUE_TEMPLATE -| | +-bug_report.yml -| | +-feature_request.yml -| +-workflows -| | +-deploy.yml -| | +-release.yml -| +-.gitignore -| +-CODE_OF_CONDUCT.md -| +-CODEOWNERS -| +-LICENSE -| +-PULL_REQUEST_TEMPLATE.md -| +-README.md +├── ISSUE_TEMPLATE +│ ├── bug_report.yml +│ ├── config.yml +│ └── feature_request.yml +├── workflows +│ ├── deploy.yml +│ ├── labels.yml +│ ├── pr-size.yml +│ └── realease.yml +├── .gitignore +├── CODE_OF_CONDUCT.md +├── CODEOWNERS +├── LICENSE +├── PULL_REQUEST_TEMPLATE.md +├── README.md +└── labeler.yml ``` ### Thank you for checking this out, any suggestion or contribution is welcome! 🤘🏻 diff --git a/labeler.yml b/labeler.yml index ac2b9a4..717ccb7 100644 --- a/labeler.yml +++ b/labeler.yml @@ -1,17 +1,30 @@ # frontend: -# - "web/**" -# - "frontend/**" +# - changed-files: +# - any-glob-to-any-file: +# - "web/**" +# - "frontend/**" # # backend: -# - "api/**" -# - "server/**" +# - changed-files: +# - any-glob-to-any-file: +# - "api/**" +# - "server/**" docs: - - "**/*.md" + - changed-files: + - any-glob-to-any-file: + - "**/*.md" ci: - - ".github/**" + - changed-files: + - any-glob-to-any-file: + - ".github/**" tests: - - "**/*test*" - - "**/*spec*" + - changed-files: + - any-glob-to-any-file: + - "**/*.test.*" + - "**/*.spec.*" + - "**/*_test.go" + - "tests/**" + - "**/__tests__/**" diff --git a/workflows/labels-test.yml b/workflows/labels-test.yml deleted file mode 100644 index 780ce88..0000000 --- a/workflows/labels-test.yml +++ /dev/null @@ -1,12 +0,0 @@ -name: PR Labels - -on: - pull_request: - types: - - opened - - synchronize - - reopened - -jobs: - labels: - uses: anaverage-enri/.github/.github/workflows/labels.yml@main diff --git a/workflows/pr-size-test.yml b/workflows/pr-size-test.yml deleted file mode 100644 index 6886184..0000000 --- a/workflows/pr-size-test.yml +++ /dev/null @@ -1,12 +0,0 @@ -name: PR Size - -on: - pull_request: - types: - - opened - - synchronize - - reopened - -jobs: - size: - uses: anaverage-enri/.github/.github/workflows/pr-size.yml@main