Skip to content

Commit

Permalink
πŸš€ Add Auto Assign Workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ChunhThanhDe committed Nov 29, 2024
1 parent 460a38e commit beda777
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
19 changes: 19 additions & 0 deletions .github/workflows/auto_asign.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Auto Assign
on:
issues:
types: [opened]
pull_request:
types: [opened]
jobs:
run:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- name: 'Auto-assign issue'
uses: pozil/auto-assign-issue@v1
with:
repo-token: ${{ secrets.GH_TOKEN }}
assignees: ChunhThanhDe
numOfAssignee: 1
8 changes: 7 additions & 1 deletion .github/workflows/sync_labels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,10 @@ jobs:
- name: πŸš€ Run Label Sync
uses: srealmoreno/label-sync-action@v2
with:
config-file: https://raw.githubusercontent.com/Flutter-Journey/.github/main/.github/labels.yml
config-file: https://raw.githubusercontent.com/Flutter-Journey/.github/main/.github/labels.yml

- name: πŸš€ Run Label Sync (Local)
if: ${{ hashFiles('.github/labels.yml') }}
uses: srealmoreno/label-sync-action@v2
with:
config-file: .github/labels.yml

0 comments on commit beda777

Please sign in to comment.