Skip to content

Commit

Permalink
Revert "stop sync issue from ent repo to nebula" (vesoft-inc#2759)
Browse files Browse the repository at this point in the history
* Revert "Delete autp_sync_issue.yml (vesoft-inc#2677)"

This reverts commit 26552b2.

* Rename autp_sync_issue.yml to auto_sync_issue.yml
  • Loading branch information
Sophie-Xie authored May 10, 2023
1 parent 78e9fdd commit e0a334f
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/auto_sync_issue.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Auto sync issue

on:
issues:
types:
- reopened
- opened
- labeled
- unlabeled

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

env:
GH_PAT: ${{ secrets.GH_BOT_PAT }}
IU_NUM: ${{ github.event.issue.number }}
TO_REPO: "vesoft-inc/nebula"
COMMON_ISSUE_LABEL: "auto-sync"

jobs:
sync:
name: auto sync issue
runs-on: ubuntu-latest
permissions: write-all
if: contains(github.event.issue.labels.*.name, 'auto-sync')
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.8'
- uses: qianbd/sync_issue@main

0 comments on commit e0a334f

Please sign in to comment.