File tree 1 file changed +0
-43
lines changed
1 file changed +0
-43
lines changed Original file line number Diff line number Diff line change 1
1
name : Project Workflows
2
2
3
3
on :
4
- issues :
5
- types :
6
- - reopened
7
- - closed
8
4
pull_request_target :
9
5
types :
10
6
- opened
11
7
- edited
12
8
- reopened
13
9
- synchronize
14
10
15
- env :
16
- project_id : 20
17
- new : 🆕 New
18
- backlog : 🗃 Backlog
19
- prioritized : 🔖 Prioritized
20
- in_progress : 🏗 In progress
21
- blocked : 🛑 Blocked
22
- in_review : 👀 In review
23
- done : ✅ Done
24
-
25
11
jobs :
26
-
27
- issue_reopened :
28
- name : Issue Reopened
29
- runs-on : ubuntu-latest
30
- if : github.event_name == 'issues' && github.event.action == 'reopened'
31
- steps :
32
- - name : Move issue to ${{ env.prioritized }}
33
- uses : leonsteinhaeuser/project-beta-automations@v2.1.0
34
- with :
35
- gh_token : ${{ secrets.GITHUB_TOKEN }}
36
- organization : WalletConnect
37
- project_id : ${{ env.project_id }}
38
- resource_node_id : ${{ github.event.issue.node_id }}
39
- status_value : ${{ env.prioritized }}
40
-
41
- issue_closed :
42
- name : issue_closed
43
- runs-on : ubuntu-latest
44
- if : github.event_name == 'issues' && github.event.action == 'closed'
45
- steps :
46
- - name : Moved issue to ${{ env.done }}
47
- uses : leonsteinhaeuser/project-beta-automations@v2.1.0
48
- with :
49
- gh_token : ${{ secrets.GITHUB_TOKEN }}
50
- organization : WalletConnect
51
- project_id : ${{ env.project_id }}
52
- resource_node_id : ${{ github.event.issue.node_id }}
53
- status_value : ${{ env.done }}
54
-
55
12
check_pull_requests :
56
13
name : Check linked issues
57
14
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments