Skip to content

Commit b03a1ed

Browse files
authored
feat(projects): Add issues and PRs to github project board (#5424)
## Explanation This will use a shared github workflow and will add any issues or PRs to our github board that have our team label on them. ## References * Fixes #5125 * Uses: https://github.com/MetaMask/github-tools/blob/main/.github/workflows/add-item-to-project.yml ## Checklist - [ ] I've updated the test suite for new or updated code as appropriate - [ ] I've updated documentation (JSDoc, Markdown, etc.) for new or updated code as appropriate - [ ] I've highlighted breaking changes using the "BREAKING" category above as appropriate - [ ] I've prepared draft pull requests for clients and consumer packages to resolve any breaking changes
1 parent e70c424 commit b03a1ed

File tree

2 files changed

+18
-24
lines changed

2 files changed

+18
-24
lines changed

Diff for: .github/workflows/add-prs-to-project.yml

-24
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: 'Add Wallet Framework Issues/PRs to Project Board'
2+
3+
on:
4+
pull_request:
5+
types: [opened, labeled, review_requested]
6+
issues:
7+
types: [opened, labeled]
8+
9+
jobs:
10+
call_shared_workflow:
11+
name: 'Call the Shared Workflow'
12+
uses: metamask/github-tools/.github/actions/add-item-to-project.yml@d18bebcbb77f0a17b12ce481427382ad1239fe53
13+
with:
14+
project-url: 'https://github.com/orgs/MetaMask/projects/113'
15+
team-name: 'wallet-framework-engineers'
16+
team-label: 'team-wallet-framework'
17+
secrets:
18+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)