Skip to content

Commit 0080b25

Browse files
authored
Merge pull request #226 from lisa-analyzer/project-actions
Project actions
2 parents 4e7b59a + 7df6c99 commit 0080b25

File tree

5 files changed

+33
-24
lines changed

5 files changed

+33
-24
lines changed

.github/release-drafter-config.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,17 @@ tag-template: 'draft'
33
categories:
44
- title: '🚀 Features'
55
labels:
6-
- 'type:feature'
6+
- '🎆 type:feature'
77
- title: '🐛 Bug Fixes'
88
labels:
9-
- 'type:bug'
9+
- '🐛 type:bug'
1010
- title: '🧰 Maintenance and others'
1111
labels:
12-
- 'type:test'
13-
- 'scope:infrastructure'
14-
- 'type:refactoring'
15-
- 'scope:docs'
12+
- '🧫 type:test'
13+
- '🏨 scope:infrastructure'
14+
- '🛠 type:refactoring'
15+
- '📑 scope:docs'
16+
- '🧱 scope:build'
1617
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
1718
change-title-escapes: '\<*_&'
1819
template: |

.github/workflows/created-issues.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,11 @@ jobs:
1212

1313
steps:
1414
- name: Move to the TODO column
15-
uses: alex-page/github-project-[email protected].1
15+
uses: leonsteinhaeuser/project-[email protected].1
1616
with:
17-
project: LiSA
18-
column: TODO
19-
repo-token: ${{ secrets.LISA_PAT }}
20-
17+
gh_token: ${{ secrets.LISA_PAT }}
18+
organization: lisa-analyzer
19+
project_id: 3
20+
resource_node_id: ${{ github.event.issue.node_id }}
21+
status_value: Backlog
22+

.github/workflows/created-prs.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,14 @@ jobs:
1212

1313
steps:
1414
- name: Move to the PR-WIP column
15-
uses: alex-page/github-project-[email protected].1
15+
uses: leonsteinhaeuser/project-[email protected].1
1616
with:
17-
project: LiSA
18-
column: PR-WIP
19-
repo-token: ${{ secrets.LISA_PAT }}
20-
- name: add label
17+
gh_token: ${{ secrets.LISA_PAT }}
18+
organization: lisa-analyzer
19+
project_id: 3
20+
resource_node_id: ${{ github.event.pull_request.node_id }}
21+
status_value: 'PR WIP'
22+
- name: Add WIP label
2123
uses: andymckay/labeler@22d5392de2b725cea4b284df5824125054049d84
2224
with:
2325
add-labels: '🏗 resolution:wip'

.github/workflows/ready-prs.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Move to the PR-READY column
14-
uses: alex-page/github-project-[email protected].1
14+
uses: leonsteinhaeuser/project-[email protected].1
1515
with:
16-
project: LiSA
17-
column: PR-READY
18-
repo-token: ${{ secrets.LISA_PAT }}
16+
gh_token: ${{ secrets.LISA_PAT }}
17+
organization: lisa-analyzer
18+
project_id: 3
19+
resource_node_id: ${{ github.event.pull_request.node_id }}
20+
status_value: 'PR Ready'

.github/workflows/resolved-issues.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Move to the DONE column
14-
uses: alex-page/github-project-[email protected].1
14+
uses: leonsteinhaeuser/project-[email protected].1
1515
with:
16-
project: LiSA
17-
column: DONE
18-
repo-token: ${{ secrets.LISA_PAT }}
16+
gh_token: ${{ secrets.LISA_PAT }}
17+
organization: lisa-analyzer
18+
project_id: 3
19+
resource_node_id: ${{ github.event.issue.node_id }}
20+
status_value: Done

0 commit comments

Comments
 (0)