Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .github/workflows/project-issue-trigger.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# https://github.com/TDesignOteam/tdesign-projects-action

name: project-issue-trigger
on:
issues:
types: [opened, closed]
jobs:
project-issue-trigger:
runs-on: ubuntu-latest
steps:
- name: issue to project
uses: TDesignOteam/tdesign-projects-action@main
env:
GH_TOKEN: ${{ secrets.TDESIGN_BOT_TOKEN }}
PROJECT_TYPE: ISSUE2TRIGGER
PROJECT_ID: 1
18 changes: 18 additions & 0 deletions .github/workflows/project-label-trigger.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# https://github.com/TDesignOteam/tdesign-projects-action

name: projects-label-trigger

on:
issues:
types: [labeled, unlabeled]

jobs:
projects-label-trigger:
runs-on: ubuntu-latest
steps:
- name: label to project
uses: TDesignOteam/tdesign-projects-action@main
env:
GH_TOKEN: ${{ secrets.TDESIGN_BOT_TOKEN }}
PROJECT_TYPE: LABEL2TRIGGER
PROJECT_ID: 1
18 changes: 18 additions & 0 deletions .github/workflows/project-pr-trigger.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# https://github.com/TDesignOteam/tdesign-projects-action

name: project-pr-trigger

on:
pull_request_target:
types: [opened, reopened, closed]

jobs:
project-pr-trigger:
runs-on: ubuntu-latest
steps:
- name: pr to project
uses: TDesignOteam/tdesign-projects-action@main
env:
GH_TOKEN: ${{ secrets.TDESIGN_BOT_TOKEN }}
PROJECT_TYPE: PR2TRIGGER
PROJECT_ID: 1
Loading