Overview
Comment: | Add GitHub Actions file to auto assignment issues from GitHub. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
7078901d628dad253335400f91db2c45 |
User & Date: | user on 2023-01-16 07:34:20 |
Other Links: | manifest | tags |
Context
2023-01-16
| ||
07:36 | Correct a mistake in the GitHub Actions file. check-in: fbab309c65 user: user tags: trunk | |
07:34 | Add GitHub Actions file to auto assignment issues from GitHub. check-in: 7078901d62 user: user tags: trunk | |
07:32 | More documentation improvements, including README and some minor changes in other files. check-in: dd3e717a78 user: user tags: trunk | |
Changes
Added .github/auto-assignment.yml version [7469065bf6].
> > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | on: issues: types: - opened pull_request: types: - opened permissions: contents: read issues: write pull-requests: write jobs: default: runs-on: ubuntu-latest steps: - run: gh issue edit ${{ github.event.issue.number }} --add-assignee ${{ github.repository_owner }} env: GH_TOKEN: ${{ github.token }} GH_REPO: ${{ github.repository }} |