diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..da11025 Binary files /dev/null and b/.DS_Store differ diff --git a/.github/labeler.yml b/.github/labeler.yml new file mode 100644 index 0000000..9891b1f --- /dev/null +++ b/.github/labeler.yml @@ -0,0 +1,13 @@ +Javascript: +- any: + - any-glob-to-any-file: ["**/*.js", "**/*.jsx"] +Typescript: +- any: + - changed-files: + - any-glob-to-any-file: ["**/*.ts", "**/*.tsx"] + - head-branch: '/^(?i)(a).*/' +Python: +- any: + - changed-files: + - any-glob-to-any-file: ["**/*.py"] + diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml new file mode 100644 index 0000000..ff59b97 --- /dev/null +++ b/.github/workflows/labeler.yml @@ -0,0 +1,19 @@ +name: Pull Request Labeler + +on: + pull_request_target: + types: [opened, synchronize, reopened, closed] + +jobs: + label: + runs-on: ubuntu-latest + permissions: + contents: read + pull-requests: write + + steps: + - uses: actions/checkout@v4 # Uploads repository content to the runner + with: + sparse-checkout: | + .github + - uses: actions/labeler@v5 diff --git a/docs/test.md b/docs/test.md new file mode 100644 index 0000000..f1b374f --- /dev/null +++ b/docs/test.md @@ -0,0 +1 @@ +dependabot/npm_and_yarn/minimatch-10.0.1 \ No newline at end of file diff --git a/docs/test2.md b/docs/test2.md new file mode 100644 index 0000000..5ad1602 --- /dev/null +++ b/docs/test2.md @@ -0,0 +1 @@ +test2.md211112024dependabot/npm_and_yarn/minimatch-10.0.1 \ No newline at end of file diff --git a/javascript/index.js b/javascript/index.js new file mode 100644 index 0000000..5abd484 --- /dev/null +++ b/javascript/index.js @@ -0,0 +1,3 @@ +console.log("dependabot/npm_and_yarn/minimatch-10.0.1") +console.log("hello world 2") +console.log("hello Friend") diff --git a/python/index.py b/python/index.py new file mode 100644 index 0000000..4276a8d --- /dev/null +++ b/python/index.py @@ -0,0 +1 @@ +print("Hello World python") diff --git a/index.js b/typescript/index.ts similarity index 100% rename from index.js rename to typescript/index.ts