feat: switch from mkdocs and mkdocs-theme material to properdocs with… #14
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Labeler | |
| on: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| actions: read | |
| contents: read | |
| security-events: write | |
| pull-requests: write | |
| jobs: | |
| dump-context: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Dump context "GitHub" | |
| env: | |
| GITHUB_CONTEXT: ${{ toJson(github) }} | |
| run: echo "$GITHUB_CONTEXT" | |
| labeler: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out the repository | |
| uses: actions/checkout@v6 | |
| - name: Run Labeler | |
| uses: crazy-max/ghaction-github-labeler@v6.0.0 | |
| with: | |
| skip-delete: true | |
| github-token: ${{ secrets.GITHUB_TOKEN }} |