mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2025-12-22 22:20:02 +00:00
22 lines
429 B
YAML
22 lines
429 B
YAML
name: Auto Unassign
|
|
on:
|
|
schedule:
|
|
- cron: '4 2 * * *'
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
issues: write
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
auto-unassign:
|
|
name: Auto Unassign
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Auto Unassign
|
|
uses: tisonspieces/auto-unassign@main
|
|
with:
|
|
token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
|
|
repository: ${{ github.repository }}
|