docs: add README and org-wide security policy #1
Workflow file for this run
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: Auto assign author | |
| on: | |
| # zizmor: ignore[dangerous-triggers] — only checks out base branch to load the composite action, no untrusted code runs | |
| pull_request_target: | |
| branches: [main] | |
| types: [opened, reopened] | |
| permissions: {} | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| assign: | |
| name: Auto assign PR author | |
| runs-on: ubuntu-latest | |
| if: github.event.pull_request.user.type == 'User' | |
| timeout-minutes: 5 | |
| permissions: | |
| pull-requests: write # needed to add the PR author as assignee | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - uses: ./actions/auto-assign |