diff --git a/.github/labeler.yml b/.github/labeler.yml new file mode 100644 index 00000000..2afb94a0 --- /dev/null +++ b/.github/labeler.yml @@ -0,0 +1,3 @@ +do-not-merge/hold: +- changed-files: + - any-glob-to-any-file: '**' \ No newline at end of file diff --git a/.github/workflows/hold.yaml b/.github/workflows/hold.yaml new file mode 100644 index 00000000..c54329fe --- /dev/null +++ b/.github/workflows/hold.yaml @@ -0,0 +1,15 @@ +name: "Pull Request Labeler" +on: +- pull_request_target + +jobs: + labeler: + permissions: + contents: read + pull-requests: write + issues: write + runs-on: ubuntu-latest + steps: + - uses: actions/labeler@v5 + with: + repo-token: ${{ secrets.LABELER_TOKEN }}