Skip to content

Commit c36f890

Browse files
authored
Merge pull request #41 from linuxserver/dependabot/github_actions/leonsteinhaeuser/project-beta-automations-2.2.1
Bump leonsteinhaeuser/project-beta-automations from 2.1.0 to 2.2.1
2 parents 16b938e + ed5ba65 commit c36f890

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/issue-pr-tracker.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
issues: write
1111
steps:
1212
- name: Add Open Docker Related Issues Not Labeled Invalid
13-
uses: leonsteinhaeuser/project-beta-automations@v2.1.0
13+
uses: leonsteinhaeuser/project-beta-automations@v2.2.1
1414
if: ${{ github.event_name == 'issues' && github.event.issue.state == 'open' && startsWith(github.event.repository.name, 'docker-') && ! contains(github.event.issue.labels.*.name, 'invalid') && ! contains(github.event.issue.labels.*.name, 'closed-issue-activity') }}
1515
with:
1616
gh_token: ${{ secrets.CR_PAT }}
@@ -23,7 +23,7 @@ jobs:
2323
run: |
2424
echo 'Issue [#${{ github.event.issue.number }}](${{ github.event.issue.html_url }}) is added to [project](https://github.com/orgs/linuxserver/projects/8) column "Issues"' >> $GITHUB_STEP_SUMMARY
2525
- name: Add Open Non-Docker Related Issues Not Labeled Invalid
26-
uses: leonsteinhaeuser/project-beta-automations@v2.1.0
26+
uses: leonsteinhaeuser/project-beta-automations@v2.2.1
2727
if: ${{ github.event_name == 'issues' && github.event.issue.state == 'open' && ! startsWith(github.event.repository.name, 'docker-') && ! contains(github.event.issue.labels.*.name, 'invalid') && ! contains(github.event.issue.labels.*.name, 'closed-issue-activity') }}
2828
with:
2929
gh_token: ${{ secrets.CR_PAT }}
@@ -36,7 +36,7 @@ jobs:
3636
run: |
3737
echo 'Issue [#${{ github.event.issue.number }}](${{ github.event.issue.html_url }}) is added to [project](https://github.com/orgs/linuxserver/projects/8) column "Non-Docker Issues"' >> $GITHUB_STEP_SUMMARY
3838
- name: Add Open Issues Labeled Invalid
39-
uses: leonsteinhaeuser/project-beta-automations@v2.1.0
39+
uses: leonsteinhaeuser/project-beta-automations@v2.2.1
4040
if: ${{ github.event_name == 'issues' && github.event.issue.state == 'open' && contains(github.event.issue.labels.*.name, 'invalid') && ! contains(github.event.issue.labels.*.name, 'closed-issue-activity') }}
4141
with:
4242
gh_token: ${{ secrets.CR_PAT }}
@@ -49,7 +49,7 @@ jobs:
4949
run: |
5050
echo 'Issue [#${{ github.event.issue.number }}](${{ github.event.issue.html_url }}) is added to [project](https://github.com/orgs/linuxserver/projects/8) column "Insufficient Info"' >> $GITHUB_STEP_SUMMARY
5151
- name: Move Closed Issues and PRs to Done
52-
uses: leonsteinhaeuser/project-beta-automations@v2.1.0
52+
uses: leonsteinhaeuser/project-beta-automations@v2.2.1
5353
if: ${{ github.event.issue.state == 'closed' || github.event.pull_request.state == 'closed' }}
5454
with:
5555
gh_token: ${{ secrets.CR_PAT }}
@@ -62,7 +62,7 @@ jobs:
6262
run: |
6363
echo 'Issue or PR [#${{ github.event.issue.number || github.event.pull_request.number }}](${{ github.event.issue.html_url || github.event.pull_request.html_url }}) is added to [project](https://github.com/orgs/linuxserver/projects/8) column "Done"' >> $GITHUB_STEP_SUMMARY
6464
- name: Add Open PRs Without Review Requests
65-
uses: leonsteinhaeuser/project-beta-automations@v2.1.0
65+
uses: leonsteinhaeuser/project-beta-automations@v2.2.1
6666
if: ${{ (github.event_name == 'pull_request_target' || github.event_name == 'pull_request_review' && github.event.pull_request.head.repo.owner.login == 'linuxserver') && github.event.pull_request.state == 'open' && github.event.pull_request.requested_reviewers[0] == null && github.event.pull_request.requested_teams[0] == null && github.event.review.state != 'approved' && ! contains(github.event.pull_request.labels.*.name, 'closed-pr-activity') }}
6767
with:
6868
gh_token: ${{ secrets.CR_PAT }}
@@ -75,7 +75,7 @@ jobs:
7575
run: |
7676
echo 'PR [#${{ github.event.pull_request.number }}](${{ github.event.pull_request.html_url }}) is added to [project](https://github.com/orgs/linuxserver/projects/8) column "PRs"' >> $GITHUB_STEP_SUMMARY
7777
- name: Add Open PRs With Review Requests
78-
uses: leonsteinhaeuser/project-beta-automations@v2.1.0
78+
uses: leonsteinhaeuser/project-beta-automations@v2.2.1
7979
if: ${{ (github.event_name == 'pull_request_target' || github.event_name == 'pull_request_review' && github.event.pull_request.head.repo.owner.login == 'linuxserver') && github.event.pull_request.state == 'open' && (github.event.pull_request.requested_reviewers[0] != null || github.event.pull_request.requested_teams[0] != null) && github.event.review.state != 'approved' && ! contains(github.event.pull_request.labels.*.name, 'closed-pr-activity') }}
8080
with:
8181
gh_token: ${{ secrets.CR_PAT }}
@@ -88,7 +88,7 @@ jobs:
8888
run: |
8989
echo 'PR [#${{ github.event.pull_request.number }}](${{ github.event.pull_request.html_url }}) is added to [project](https://github.com/orgs/linuxserver/projects/8) column "PRs Ready For Team Review"' >> $GITHUB_STEP_SUMMARY
9090
- name: Move Approved PRs
91-
uses: leonsteinhaeuser/project-beta-automations@v2.1.0
91+
uses: leonsteinhaeuser/project-beta-automations@v2.2.1
9292
if: ${{ (github.event_name == 'pull_request_target' || github.event_name == 'pull_request_review' && github.event.pull_request.head.repo.owner.login == 'linuxserver') && github.event.pull_request.state == 'open' && github.event.review.state == 'approved' && ! contains(github.event.pull_request.labels.*.name, 'closed-pr-activity') }}
9393
with:
9494
gh_token: ${{ secrets.CR_PAT }}

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy