diff --git a/.github/labeler.yml b/.github/labeler.yml new file mode 100644 index 000000000..07f983285 --- /dev/null +++ b/.github/labeler.yml @@ -0,0 +1,53 @@ +JavaScript: + - "**/*.js" + +TypeScript: + - "**/*.ts" + +Python: + - "**/*.py" + +Java: + - "**/*.java" + +C++: + - "**/*.cpp" + +C: + - "**/*.c" + +C#: + - "**/*.cs" + +PHP: + - "**/*.php" + +Swift: + - "**/*.swift" + +Kotlin: + - "**/*.kt" + +Dart: + - "**/*.dart" + +Go: + - "**/*.go" + +Ruby: + - "**/*.rb" + +Scala: + - "**/*.scala" + +Rust: + - "**/*.rs" + +Racket: + - "**/*.rkt" + +Erlang: + - "**/*.erl" + +Elixir: + - "**/*.ex" diff --git a/.github/workflows/pr-labeler.yaml b/.github/workflows/pr-labeler.yaml new file mode 100644 index 000000000..518155cca --- /dev/null +++ b/.github/workflows/pr-labeler.yaml @@ -0,0 +1,17 @@ +name: "Pull Request Labeler" + +on: + pull_request: + types: [opened, synchronize, reopened] + +jobs: + label: + runs-on: ubuntu-latest + steps: + - name: "Check out code" + uses: actions/checkout@v3 + + - name: "Run Labeler" + uses: actions/labeler@v5 + with: + repo-token: "${{ secrets.GITHUB_TOKEN }}" diff --git a/3sum/test.js b/3sum/test.js new file mode 100644 index 000000000..209d13e12 --- /dev/null +++ b/3sum/test.js @@ -0,0 +1 @@ +console.log("test change"); diff --git a/alien-dictionary/test.py b/alien-dictionary/test.py new file mode 100644 index 000000000..1ff8e07c7 --- /dev/null +++ b/alien-dictionary/test.py @@ -0,0 +1 @@ +print("test")