Skip to content

Commit ee53bdd

Browse files
committed
updated workflows
1 parent 6a542ff commit ee53bdd

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.github/workflows/assign-to-project.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,26 +17,26 @@ jobs:
1717
uses: srggrs/assign-one-project-github-action@1.3.1
1818
if: contains(github.event.issue.labels.*.name, 'bug')
1919
with:
20-
project: 'https://github.com/irongut/EDlib/projects/1'
20+
project: 'https://github.com/irongut/CodeCoverageSummary/projects/1'
2121
column_name: 'Needs triage'
2222

2323
- name: Assign Issues to Enhancements
2424
uses: srggrs/assign-one-project-github-action@1.3.1
2525
if: contains(github.event.issue.labels.*.name, 'enhancement')
2626
with:
27-
project: 'https://github.com/irongut/EDlib/projects/2'
27+
project: 'https://github.com/irongut/CodeCoverageSummary/projects/2'
2828
column_name: 'To do'
2929

3030
- name: Assign PRs to Bugs
3131
uses: srggrs/assign-one-project-github-action@1.3.1
3232
if: contains(github.event.pull_request.labels.*.name, 'bug')
3333
with:
34-
project: 'https://github.com/irongut/EDlib/projects/1'
34+
project: 'https://github.com/irongut/CodeCoverageSummary/projects/1'
3535
column_name: 'In Progress'
3636

3737
- name: Assign PRs to Enhancements
3838
uses: srggrs/assign-one-project-github-action@1.3.1
3939
if: contains(github.event.pull_request.labels.*.name, 'enhancement')
4040
with:
41-
project: 'https://github.com/irongut/EDlib/projects/2'
41+
project: 'https://github.com/irongut/CodeCoverageSummary/projects/2'
4242
column_name: 'In Progress'

.github/workflows/auto-assign-pr.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,16 @@
22
# https://github.com/samspills/assign-pr-to-author
33

44
name: Auto Assign PR
5-
on: [pull_request]
5+
6+
on:
7+
pull_request:
8+
types: [opened]
69

710
jobs:
811
assignAuthor:
912
runs-on: ubuntu-latest
1013
steps:
1114
- name: Auto Assign PR
1215
uses: samspills/assign-pr-to-author@v1.0.1
13-
if: github.event_name == 'pull_request' && github.event.action == 'opened'
1416
with:
1517
repo-token: '${{ secrets.GITHUB_TOKEN }}'

0 commit comments

Comments
 (0)