diff --git a/.github/labeler.yml b/.github/labeler.yml new file mode 100644 index 0000000000..1b9df08c3d --- /dev/null +++ b/.github/labeler.yml @@ -0,0 +1,39 @@ +# LABEL List for Workflow labeler.yml job triage +"iOS": +- Document/0x06* + +"Android": +- Document/0x05* + +"MASVS-STORAGE": +- Document/0x0[5-6]d* + +"MASVS-CRYPTO": +- Document/0x0[5-6]e* + +"MASVS-AUTH": +- Document/0x0[5-6]f* + +"MASVS-NETWORK": +- Document/0x0[5-6]g* + +"MASVS-PLATFORM": +- Document/0x0[5-6]h* + +"MASVS-CODE": +- Document/0x0[5-6]i* + +"MASVS-RESILIENCE": +- Document/0x0[5-6]j* + +"tests": +- Document/0x0[5-6][d-j]* + +"fundamentals": +- Document/0x0[5-6][a-b]* + +"techniques": +- Document/0x0[5-6]c* + +"tools": +- Document/0x08* diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml new file mode 100644 index 0000000000..057208eda3 --- /dev/null +++ b/.github/workflows/labeler.yml @@ -0,0 +1,14 @@ +name: "Pull Request Labeler" +on: +- pull_request_target + +jobs: + triage: + permissions: + contents: read + pull-requests: write + runs-on: ubuntu-latest + steps: + - uses: actions/labeler@v4 + with: + repo-token: "${{ secrets.GITHUB_TOKEN }}"