diff --git a/.github/labeler.yml b/.github/labeler.yml new file mode 100644 index 0000000..98a8898 --- /dev/null +++ b/.github/labeler.yml @@ -0,0 +1,3 @@ +python: + - changed-files: + - any-glob-to-any-file: "*.py" diff --git a/.github/workflows/.github/workflows/.github/.github/labeler.yml b/.github/workflows/.github/workflows/.github/.github/labeler.yml new file mode 100644 index 0000000..98a8898 --- /dev/null +++ b/.github/workflows/.github/workflows/.github/.github/labeler.yml @@ -0,0 +1,3 @@ +python: + - 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..a323f4d --- /dev/null +++ b/.github/workflows/labeler.yml @@ -0,0 +1,16 @@ +name: PR Labeler + +on: + pull_request: + +jobs: + label: + runs-on: ubuntu-latest + + permissions: + contents: read + pull-requests: write + + steps: + - name: Label Pull Request + uses: actions/labeler@v5 diff --git a/app.py b/app.py index 5e6bf0d..80f1358 100644 --- a/app.py +++ b/app.py @@ -1,2 +1,7 @@ def hello(): return "Hello World" + + +print(hello()) + +# test labeler 2