Skip to content

Commit 90a3a7e

Browse files
author
Xavier Basty
authored
fix: remove redundant project actions (#138)
1 parent bb1e0f4 commit 90a3a7e

File tree

1 file changed

+0
-43
lines changed

1 file changed

+0
-43
lines changed

.github/workflows/issues.yaml

-43
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,14 @@
11
name: Project Workflows
22

33
on:
4-
issues:
5-
types:
6-
- reopened
7-
- closed
84
pull_request_target:
95
types:
106
- opened
117
- edited
128
- reopened
139
- synchronize
1410

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-
2511
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-
5512
check_pull_requests:
5613
name: Check linked issues
5714
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)