Overview
Comment: | Correct a mistake in the GitHub Actions file. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
fbab309c65614b830cd94f0e5ed24af2 |
User & Date: | user on 2023-01-16 07:36:14 |
Other Links: | manifest | tags |
Context
2023-01-31
| ||
02:29 | SHIFT+B in editor to fill only the border of the selection rectangle. check-in: 13bba11fed user: user tags: trunk | |
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 | |
Changes
Deleted .github/auto-assignment.yml version [7469065bf6].
|
| < < < < < < < < < < < < < < < < < < < |
Added .github/workflows/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 }} |