You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
579 B
22 lines
579 B
# GitHub recommends pinning actions to a commit SHA.
|
|
# To get a newer version, you will need to update the SHA.
|
|
# You can also reference a tag or branch, but the action may change without warning.
|
|
|
|
name: Move assigned card
|
|
on:
|
|
issues:
|
|
types:
|
|
- assigned
|
|
pull_request:
|
|
types:
|
|
- assigned
|
|
|
|
jobs:
|
|
move-assigned-card:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: alex-page/github-project-automation-plus@v0.8.3
|
|
with:
|
|
project: OpenIM 2023 Sprint 🔥
|
|
column: In Progress
|
|
repo-token: ${{ secrets.BOT_GITHUB_TOKEN }} |