mirror of
https://github.com/linuxserver/github-workflows.git
synced 2026-03-02 00:02:48 +08:00
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
This commit is contained in:
commit
c36f890c41
14
.github/workflows/issue-pr-tracker.yml
vendored
14
.github/workflows/issue-pr-tracker.yml
vendored
@ -10,7 +10,7 @@ jobs:
|
||||
issues: write
|
||||
steps:
|
||||
- name: Add Open Docker Related Issues Not Labeled Invalid
|
||||
uses: leonsteinhaeuser/project-beta-automations@v2.1.0
|
||||
uses: leonsteinhaeuser/project-beta-automations@v2.2.1
|
||||
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') }}
|
||||
with:
|
||||
gh_token: ${{ secrets.CR_PAT }}
|
||||
@ -23,7 +23,7 @@ jobs:
|
||||
run: |
|
||||
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
|
||||
- name: Add Open Non-Docker Related Issues Not Labeled Invalid
|
||||
uses: leonsteinhaeuser/project-beta-automations@v2.1.0
|
||||
uses: leonsteinhaeuser/project-beta-automations@v2.2.1
|
||||
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') }}
|
||||
with:
|
||||
gh_token: ${{ secrets.CR_PAT }}
|
||||
@ -36,7 +36,7 @@ jobs:
|
||||
run: |
|
||||
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
|
||||
- name: Add Open Issues Labeled Invalid
|
||||
uses: leonsteinhaeuser/project-beta-automations@v2.1.0
|
||||
uses: leonsteinhaeuser/project-beta-automations@v2.2.1
|
||||
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') }}
|
||||
with:
|
||||
gh_token: ${{ secrets.CR_PAT }}
|
||||
@ -49,7 +49,7 @@ jobs:
|
||||
run: |
|
||||
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
|
||||
- name: Move Closed Issues and PRs to Done
|
||||
uses: leonsteinhaeuser/project-beta-automations@v2.1.0
|
||||
uses: leonsteinhaeuser/project-beta-automations@v2.2.1
|
||||
if: ${{ github.event.issue.state == 'closed' || github.event.pull_request.state == 'closed' }}
|
||||
with:
|
||||
gh_token: ${{ secrets.CR_PAT }}
|
||||
@ -62,7 +62,7 @@ jobs:
|
||||
run: |
|
||||
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
|
||||
- name: Add Open PRs Without Review Requests
|
||||
uses: leonsteinhaeuser/project-beta-automations@v2.1.0
|
||||
uses: leonsteinhaeuser/project-beta-automations@v2.2.1
|
||||
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') }}
|
||||
with:
|
||||
gh_token: ${{ secrets.CR_PAT }}
|
||||
@ -75,7 +75,7 @@ jobs:
|
||||
run: |
|
||||
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
|
||||
- name: Add Open PRs With Review Requests
|
||||
uses: leonsteinhaeuser/project-beta-automations@v2.1.0
|
||||
uses: leonsteinhaeuser/project-beta-automations@v2.2.1
|
||||
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') }}
|
||||
with:
|
||||
gh_token: ${{ secrets.CR_PAT }}
|
||||
@ -88,7 +88,7 @@ jobs:
|
||||
run: |
|
||||
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
|
||||
- name: Move Approved PRs
|
||||
uses: leonsteinhaeuser/project-beta-automations@v2.1.0
|
||||
uses: leonsteinhaeuser/project-beta-automations@v2.2.1
|
||||
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') }}
|
||||
with:
|
||||
gh_token: ${{ secrets.CR_PAT }}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user